From: Walter Sonius Date: Wed, 1 Feb 2017 13:42:22 +0000 (+0100) Subject: ffmpeg producer linux DV/HDV firewire support X-Git-Tag: 2.1.0_Beta2~101^2 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=800bb6ec58afab27bda6297fa925d5e94add55c5;p=casparcg ffmpeg producer linux DV/HDV firewire support --- diff --git a/modules/ffmpeg/producer/ffmpeg_producer.cpp b/modules/ffmpeg/producer/ffmpeg_producer.cpp index 216559156..c0cbad5da 100644 --- a/modules/ffmpeg/producer/ffmpeg_producer.cpp +++ b/modules/ffmpeg/producer/ffmpeg_producer.cpp @@ -633,7 +633,7 @@ void describe_producer(core::help_sink& sink, const core::help_repository& repo) ->text(L"H.264, FLV, WMV and several audio codecs as well as uncompressed audio."); sink.definitions() ->item(L"clip", L"The file without the file extension to play. It should reside under the media folder.") - ->item(L"url", L"If clip contains :// it is instead treated as the URL parameter. The URL can either be any streaming protocol supported by FFmpeg, dshow://video={webcam_name} or v4l2://{video device}.") + ->item(L"url", L"If clip contains :// it is instead treated as the URL parameter. The URL can either be any streaming protocol supported by FFmpeg, dshow://video={webcam_name} or v4l2://{video device} or iec61883://{auto}.") ->item(L"loop", L"Will cause the media file to loop between in and out.") ->item(L"in", L"Optionally sets the first frame. 0 by default. If loop is specified, this will be the frame where it starts over again.") ->item(L"out", L"Optionally sets the last frame. If not specified the clip will be played to the end. If loop is specified, the file will jump to start position once it reaches the last frame.") @@ -654,6 +654,7 @@ void describe_producer(core::help_sink& sink, const core::help_repository& repo) sink.example(L">> PLAY 1-10 rtmp://example.com/live/stream", L"to play an RTMP stream."); sink.example(L">> PLAY 1-10 \"dshow://video=Live! Cam Chat HD VF0790\"", L"to use a web camera as video input on Windows."); sink.example(L">> PLAY 1-10 v4l2:///dev/video0", L"to use a web camera as video input on Linux."); + sink.example(L">> PLAY 1-10 iec61883://auto", L"to use a FireWire (H)DV video device as video input on Linux."); sink.para()->text(L"The FFmpeg producer also supports changing some of the settings via ")->code(L"CALL")->text(L":"); sink.example(L">> CALL 1-10 LOOP 1"); sink.example(L">> CALL 1-10 IN 10");