From 2d1fd5e1f14cd665bba68f5f7db1484efd4eac6d Mon Sep 17 00:00:00 2001 From: Dustin Franklin Date: Tue, 30 May 2023 17:47:18 -0400 Subject: [PATCH] updated docs --- docs/aux-streaming.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/aux-streaming.md b/docs/aux-streaming.md index e89b36d36..b76cc7275 100644 --- a/docs/aux-streaming.md +++ b/docs/aux-streaming.md @@ -439,6 +439,8 @@ input = videoSource("/dev/video0", options={'width': 1280, 'height': 720, 'frame output = videoOutput("my_video.mp4", options={'codec': 'h264', 'bitrate': 4000000}) ``` +These settings will try to match the closest resolution/framerate available, but it's recommend to check your [camera formats](#v4l2-formats) first. + ### C++ ```c++ #include @@ -495,6 +497,8 @@ options.flipMethod = videoOptions::FLIP_ROTATE_180; videoSource* input = videoSource::Create("/dev/video0", options); ``` +These settings will try to match the closest resolution/framerate available, but it's recommend to check your [camera formats](#v4l2-formats) first. +

Next | Image Manipulation with CUDA

© 2016-2020 NVIDIA | Table of Contents