[FFmpeg-cvslog] doc: Fix alphabetic ordering for decklink input device.

Carl Eugen Hoyos git at videolan.org
Tue Mar 24 09:58:53 CET 2015


ffmpeg | branch: release/2.6 | Carl Eugen Hoyos <cehoyos at ag.or.at> | Fri Mar 13 01:57:42 2015 +0100| [a9e683bb7ab9854dc60bb4be406997a858d03cd3] | committer: Carl Eugen Hoyos

doc: Fix alphabetic ordering for decklink input device.
(cherry picked from commit a47c2a1d5f9f25b43f302bbf86dee3dc7b2e78e4)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a9e683bb7ab9854dc60bb4be406997a858d03cd3
---

 doc/indevs.texi |  162 +++++++++++++++++++++++++++----------------------------
 1 file changed, 81 insertions(+), 81 deletions(-)

diff --git a/doc/indevs.texi b/doc/indevs.texi
index dc9371c..bc4b377 100644
--- a/doc/indevs.texi
+++ b/doc/indevs.texi
@@ -150,6 +150,87 @@ $ ffmpeg -f avfoundation -pixel_format bgr0 -i "default:none" out.avi
 
 BSD video input device.
 
+ at section decklink
+
+The decklink input device provides capture capabilities for Blackmagic
+DeckLink devices.
+
+To enable this input device, you need the Blackmagic DeckLink SDK and you
+need to configure with the appropriate @code{--extra-cflags}
+and @code{--extra-ldflags}.
+On Windows, you need to run the IDL files through @command{widl}.
+
+DeckLink is very picky about the formats it supports. Pixel format is
+uyvy422 or v210, framerate and video size must be determined for your device with
+ at command{-list_formats 1}. Audio sample rate is always 48 kHz and the number
+of channels can be 2, 8 or 16.
+
+ at subsection Options
+
+ at table @option
+
+ at item list_devices
+If set to @option{true}, print a list of devices and exit.
+Defaults to @option{false}.
+
+ at item list_formats
+If set to @option{true}, print a list of supported formats and exit.
+Defaults to @option{false}.
+
+ at item bm_v210
+If set to @samp{1}, video is captured in 10 bit v210 instead
+of uyvy422. Not all Blackmagic devices support this option.
+
+ at item bm_channels <CHANNELS>
+Number of audio channels, can be 2, 8 or 16
+
+ at item bm_audiodepth <BITDEPTH>
+Audio bit depth, can be 16 or 32.
+
+ at end table
+
+ at subsection Examples
+
+ at itemize
+
+ at item
+List input devices:
+ at example
+ffmpeg -f decklink -list_devices 1 -i dummy
+ at end example
+
+ at item
+List supported formats:
+ at example
+ffmpeg -f decklink -list_formats 1 -i 'Intensity Pro'
+ at end example
+
+ at item
+Capture video clip at 1080i50 (format 11):
+ at example
+ffmpeg -f decklink -i 'Intensity Pro@@11' -acodec copy -vcodec copy output.avi
+ at end example
+
+ at item
+Capture video clip at 1080i50 10 bit:
+ at example
+ffmpeg -bm_v210 1 -f decklink -i 'UltraStudio Mini Recorder@@11' -acodec copy -vcodec copy output.avi
+ at end example
+
+ at item
+Capture video clip at 720p50 with 32bit audio:
+ at example
+ffmpeg -bm_audiodepth 32 -f decklink -i 'UltraStudio Mini Recorder@@14' -acodec copy -vcodec copy output.avi
+ at end example
+
+ at item
+Capture video clip at 576i50 with 8 audio channels:
+ at example
+ffmpeg -bm_channels 8 -f decklink -i 'UltraStudio Mini Recorder@@3' -acodec copy -vcodec copy output.avi
+ at end example
+
+ at end itemize
+
 @section dshow
 
 Windows DirectShow input device.
@@ -1112,86 +1193,5 @@ The syntax is:
 Set the grabbing region coordinates. They are expressed as offset from the top left
 corner of the X11 window. The default value is 0.
 
- at section decklink
-
-The decklink input device provides capture capabilities for Blackmagic
-DeckLink devices.
-
-To enable this input device, you need the Blackmagic DeckLink SDK and you
-need to configure with the appropriate @code{--extra-cflags}
-and @code{--extra-ldflags}.
-On Windows, you need to run the IDL files through @command{widl}.
-
-DeckLink is very picky about the formats it supports. Pixel format is
-uyvy422 or v210, framerate and video size must be determined for your device with
- at command{-list_formats 1}. Audio sample rate is always 48 kHz and the number
-of channels can be 2, 8 or 16.
-
- at subsection Options
-
- at table @option
-
- at item list_devices
-If set to @option{true}, print a list of devices and exit.
-Defaults to @option{false}.
-
- at item list_formats
-If set to @option{true}, print a list of supported formats and exit.
-Defaults to @option{false}.
-
- at item bm_v210
-If set to @samp{1}, video is captured in 10 bit v210 instead
-of uyvy422. Not all Blackmagic devices support this option.
-
- at item bm_channels <CHANNELS>
-Number of audio channels, can be 2, 8 or 16
-
- at item bm_audiodepth <BITDEPTH>
-Audio bit depth, can be 16 or 32.
-
- at end table
-
- at subsection Examples
-
- at itemize
-
- at item
-List input devices:
- at example
-ffmpeg -f decklink -list_devices 1 -i dummy
- at end example
-
- at item
-List supported formats:
- at example
-ffmpeg -f decklink -list_formats 1 -i 'Intensity Pro'
- at end example
-
- at item
-Capture video clip at 1080i50 (format 11):
- at example
-ffmpeg -f decklink -i 'Intensity Pro@@11' -acodec copy -vcodec copy output.avi
- at end example
-
- at item
-Capture video clip at 1080i50 10 bit:
- at example
-ffmpeg -bm_v210 1 -f decklink -i 'UltraStudio Mini Recorder@@11' -acodec copy -vcodec copy output.avi
- at end example
-
- at item
-Capture video clip at 720p50 with 32bit audio:
- at example
-ffmpeg -bm_audiodepth 32 -f decklink -i 'UltraStudio Mini Recorder@@14' -acodec copy -vcodec copy output.avi
- at end example
-
- at item
-Capture video clip at 576i50 with 8 audio channels:
- at example
-ffmpeg -bm_channels 8 -f decklink -i 'UltraStudio Mini Recorder@@3' -acodec copy -vcodec copy output.avi
- at end example
-
- at end itemize
-
 
 @c man end INPUT DEVICES



More information about the ffmpeg-cvslog mailing list