Imported Debian version 2.5.0~trusty1.1
[deb_ffmpeg.git] / ffmpeg / doc / indevs.texi
CommitLineData
2ba45a60
DM
1@chapter Input Devices
2@c man begin INPUT DEVICES
3
4Input devices are configured elements in FFmpeg which allow to access
5the data coming from a multimedia device attached to your system.
6
7When you configure your FFmpeg build, all the supported input devices
8are enabled by default. You can list all available ones using the
9configure option "--list-indevs".
10
11You can disable all the input devices using the configure option
12"--disable-indevs", and selectively enable an input device using the
13option "--enable-indev=@var{INDEV}", or you can disable a particular
14input device using the option "--disable-indev=@var{INDEV}".
15
16The option "-devices" of the ff* tools will display the list of
17supported input devices.
18
19A description of the currently available input devices follows.
20
21@section alsa
22
23ALSA (Advanced Linux Sound Architecture) input device.
24
25To enable this input device during configuration you need libasound
26installed on your system.
27
28This device allows capturing from an ALSA device. The name of the
29device to capture has to be an ALSA card identifier.
30
31An ALSA identifier has the syntax:
32@example
33hw:@var{CARD}[,@var{DEV}[,@var{SUBDEV}]]
34@end example
35
36where the @var{DEV} and @var{SUBDEV} components are optional.
37
38The three arguments (in order: @var{CARD},@var{DEV},@var{SUBDEV})
39specify card number or identifier, device number and subdevice number
40(-1 means any).
41
42To see the list of cards currently recognized by your system check the
43files @file{/proc/asound/cards} and @file{/proc/asound/devices}.
44
45For example to capture with @command{ffmpeg} from an ALSA device with
46card id 0, you may run the command:
47@example
48ffmpeg -f alsa -i hw:0 alsaout.wav
49@end example
50
51For more information see:
52@url{http://www.alsa-project.org/alsa-doc/alsa-lib/pcm.html}
53
54@section avfoundation
55
56AVFoundation input device.
57
58AVFoundation is the currently recommended framework by Apple for streamgrabbing on OSX >= 10.7 as well as on iOS.
59The older QTKit framework has been marked deprecated since OSX version 10.7.
60
f6fa7814
DM
61The input filename has to be given in the following syntax:
62@example
63-i "[[VIDEO]:[AUDIO]]"
64@end example
65The first entry selects the video input while the latter selects the audio input.
66The stream has to be specified by the device name or the device index as shown by the device list.
67Alternatively, the video and/or audio input device can be chosen by index using the
68@option{
69 -video_device_index <INDEX>
70}
71and/or
72@option{
73 -audio_device_index <INDEX>
74}
75, overriding any
76device name or index given in the input filename.
77
78All available devices can be enumerated by using @option{-list_devices true}, listing
79all device names and corresponding indices.
80
81There are two device name aliases:
82@table @code
83
84@item default
85Select the AVFoundation default device of the corresponding type.
86
87@item none
88Do not record the corresponding media type.
89This is equivalent to specifying an empty device name or index.
90
91@end table
92
93@subsection Options
94
95AVFoundation supports the following options:
96
97@table @option
98
99@item -list_devices <TRUE|FALSE>
100If set to true, a list of all available input devices is given showing all
101device names and indices.
102
103@item -video_device_index <INDEX>
104Specify the video device by its index. Overrides anything given in the input filename.
105
106@item -audio_device_index <INDEX>
107Specify the audio device by its index. Overrides anything given in the input filename.
108
109@item -pixel_format <FORMAT>
110Request the video device to use a specific pixel format.
111If the specified format is not supported, a list of available formats is given
112und the first one in this list is used instead. Available pixel formats are:
113@code{monob, rgb555be, rgb555le, rgb565be, rgb565le, rgb24, bgr24, 0rgb, bgr0, 0bgr, rgb0,
2ba45a60 114 bgr48be, uyvy422, yuva444p, yuva444p16le, yuv444p, yuv422p16, yuv422p10, yuv444p10,
f6fa7814 115 yuv420p, nv12, yuyv422, gray}
2ba45a60 116
f6fa7814
DM
117@end table
118
119@subsection Examples
120
121@itemize
122
123@item
124Print the list of AVFoundation supported devices and exit:
2ba45a60 125@example
f6fa7814 126$ ffmpeg -f avfoundation -list_devices true -i ""
2ba45a60
DM
127@end example
128
f6fa7814
DM
129@item
130Record video from video device 0 and audio from audio device 0 into out.avi:
2ba45a60 131@example
f6fa7814 132$ ffmpeg -f avfoundation -i "0:0" out.avi
2ba45a60
DM
133@end example
134
f6fa7814
DM
135@item
136Record video from video device 2 and audio from audio device 1 into out.avi:
2ba45a60 137@example
f6fa7814 138$ ffmpeg -f avfoundation -video_device_index 2 -i ":1" out.avi
2ba45a60
DM
139@end example
140
f6fa7814
DM
141@item
142Record video from the system default video device using the pixel format bgr0 and do not record any audio into out.avi:
2ba45a60 143@example
f6fa7814 144$ ffmpeg -f avfoundation -pixel_format bgr0 -i "default:none" out.avi
2ba45a60
DM
145@end example
146
f6fa7814
DM
147@end itemize
148
2ba45a60
DM
149@section bktr
150
151BSD video input device.
152
153@section dshow
154
155Windows DirectShow input device.
156
157DirectShow support is enabled when FFmpeg is built with the mingw-w64 project.
158Currently only audio and video devices are supported.
159
160Multiple devices may be opened as separate inputs, but they may also be
161opened on the same input, which should improve synchronism between them.
162
163The input name should be in the format:
164
165@example
166@var{TYPE}=@var{NAME}[:@var{TYPE}=@var{NAME}]
167@end example
168
169where @var{TYPE} can be either @var{audio} or @var{video},
170and @var{NAME} is the device's name.
171
172@subsection Options
173
174If no options are specified, the device's defaults are used.
175If the device does not support the requested options, it will
176fail to open.
177
178@table @option
179
180@item video_size
181Set the video size in the captured video.
182
183@item framerate
184Set the frame rate in the captured video.
185
186@item sample_rate
187Set the sample rate (in Hz) of the captured audio.
188
189@item sample_size
190Set the sample size (in bits) of the captured audio.
191
192@item channels
193Set the number of channels in the captured audio.
194
195@item list_devices
196If set to @option{true}, print a list of devices and exit.
197
198@item list_options
199If set to @option{true}, print a list of selected device's options
200and exit.
201
202@item video_device_number
203Set video device number for devices with same name (starts at 0,
204defaults to 0).
205
206@item audio_device_number
207Set audio device number for devices with same name (starts at 0,
208defaults to 0).
209
210@item pixel_format
211Select pixel format to be used by DirectShow. This may only be set when
212the video codec is not set or set to rawvideo.
213
214@item audio_buffer_size
215Set audio device buffer size in milliseconds (which can directly
216impact latency, depending on the device).
217Defaults to using the audio device's
218default buffer size (typically some multiple of 500ms).
219Setting this value too low can degrade performance.
220See also
221@url{http://msdn.microsoft.com/en-us/library/windows/desktop/dd377582(v=vs.85).aspx}
222
223@end table
224
225@subsection Examples
226
227@itemize
228
229@item
230Print the list of DirectShow supported devices and exit:
231@example
232$ ffmpeg -list_devices true -f dshow -i dummy
233@end example
234
235@item
236Open video device @var{Camera}:
237@example
238$ ffmpeg -f dshow -i video="Camera"
239@end example
240
241@item
242Open second video device with name @var{Camera}:
243@example
244$ ffmpeg -f dshow -video_device_number 1 -i video="Camera"
245@end example
246
247@item
248Open video device @var{Camera} and audio device @var{Microphone}:
249@example
250$ ffmpeg -f dshow -i video="Camera":audio="Microphone"
251@end example
252
253@item
254Print the list of supported options in selected device and exit:
255@example
256$ ffmpeg -list_options true -f dshow -i video="Camera"
257@end example
258
259@end itemize
260
261@section dv1394
262
263Linux DV 1394 input device.
264
265@section fbdev
266
267Linux framebuffer input device.
268
269The Linux framebuffer is a graphic hardware-independent abstraction
270layer to show graphics on a computer monitor, typically on the
271console. It is accessed through a file device node, usually
272@file{/dev/fb0}.
273
274For more detailed information read the file
275Documentation/fb/framebuffer.txt included in the Linux source tree.
276
277To record from the framebuffer device @file{/dev/fb0} with
278@command{ffmpeg}:
279@example
280ffmpeg -f fbdev -r 10 -i /dev/fb0 out.avi
281@end example
282
283You can take a single screenshot image with the command:
284@example
285ffmpeg -f fbdev -frames:v 1 -r 1 -i /dev/fb0 screenshot.jpeg
286@end example
287
288See also @url{http://linux-fbdev.sourceforge.net/}, and fbset(1).
289
290@section gdigrab
291
292Win32 GDI-based screen capture device.
293
294This device allows you to capture a region of the display on Windows.
295
296There are two options for the input filename:
297@example
298desktop
299@end example
300or
301@example
302title=@var{window_title}
303@end example
304
305The first option will capture the entire desktop, or a fixed region of the
306desktop. The second option will instead capture the contents of a single
307window, regardless of its position on the screen.
308
309For example, to grab the entire desktop using @command{ffmpeg}:
310@example
311ffmpeg -f gdigrab -framerate 6 -i desktop out.mpg
312@end example
313
314Grab a 640x480 region at position @code{10,20}:
315@example
316ffmpeg -f gdigrab -framerate 6 -offset_x 10 -offset_y 20 -video_size vga -i desktop out.mpg
317@end example
318
319Grab the contents of the window named "Calculator"
320@example
321ffmpeg -f gdigrab -framerate 6 -i title=Calculator out.mpg
322@end example
323
324@subsection Options
325
326@table @option
327@item draw_mouse
328Specify whether to draw the mouse pointer. Use the value @code{0} to
329not draw the pointer. Default value is @code{1}.
330
331@item framerate
332Set the grabbing frame rate. Default value is @code{ntsc},
333corresponding to a frame rate of @code{30000/1001}.
334
335@item show_region
336Show grabbed region on screen.
337
338If @var{show_region} is specified with @code{1}, then the grabbing
339region will be indicated on screen. With this option, it is easy to
340know what is being grabbed if only a portion of the screen is grabbed.
341
342Note that @var{show_region} is incompatible with grabbing the contents
343of a single window.
344
345For example:
346@example
347ffmpeg -f gdigrab -show_region 1 -framerate 6 -video_size cif -offset_x 10 -offset_y 20 -i desktop out.mpg
348@end example
349
350@item video_size
351Set the video frame size. The default is to capture the full screen if @file{desktop} is selected, or the full window size if @file{title=@var{window_title}} is selected.
352
353@item offset_x
354When capturing a region with @var{video_size}, set the distance from the left edge of the screen or desktop.
355
356Note that the offset calculation is from the top left corner of the primary monitor on Windows. If you have a monitor positioned to the left of your primary monitor, you will need to use a negative @var{offset_x} value to move the region to that monitor.
357
358@item offset_y
359When capturing a region with @var{video_size}, set the distance from the top edge of the screen or desktop.
360
361Note that the offset calculation is from the top left corner of the primary monitor on Windows. If you have a monitor positioned above your primary monitor, you will need to use a negative @var{offset_y} value to move the region to that monitor.
362
363@end table
364
365@section iec61883
366
367FireWire DV/HDV input device using libiec61883.
368
369To enable this input device, you need libiec61883, libraw1394 and
370libavc1394 installed on your system. Use the configure option
371@code{--enable-libiec61883} to compile with the device enabled.
372
373The iec61883 capture device supports capturing from a video device
374connected via IEEE1394 (FireWire), using libiec61883 and the new Linux
375FireWire stack (juju). This is the default DV/HDV input method in Linux
376Kernel 2.6.37 and later, since the old FireWire stack was removed.
377
378Specify the FireWire port to be used as input file, or "auto"
379to choose the first port connected.
380
381@subsection Options
382
383@table @option
384
385@item dvtype
386Override autodetection of DV/HDV. This should only be used if auto
387detection does not work, or if usage of a different device type
388should be prohibited. Treating a DV device as HDV (or vice versa) will
389not work and result in undefined behavior.
390The values @option{auto}, @option{dv} and @option{hdv} are supported.
391
392@item dvbuffer
393Set maxiumum size of buffer for incoming data, in frames. For DV, this
394is an exact value. For HDV, it is not frame exact, since HDV does
395not have a fixed frame size.
396
397@item dvguid
398Select the capture device by specifying it's GUID. Capturing will only
399be performed from the specified device and fails if no device with the
400given GUID is found. This is useful to select the input if multiple
401devices are connected at the same time.
402Look at /sys/bus/firewire/devices to find out the GUIDs.
403
404@end table
405
406@subsection Examples
407
408@itemize
409
410@item
411Grab and show the input of a FireWire DV/HDV device.
412@example
413ffplay -f iec61883 -i auto
414@end example
415
416@item
417Grab and record the input of a FireWire DV/HDV device,
418using a packet buffer of 100000 packets if the source is HDV.
419@example
420ffmpeg -f iec61883 -i auto -hdvbuffer 100000 out.mpg
421@end example
422
423@end itemize
424
425@section jack
426
427JACK input device.
428
429To enable this input device during configuration you need libjack
430installed on your system.
431
432A JACK input device creates one or more JACK writable clients, one for
433each audio channel, with name @var{client_name}:input_@var{N}, where
434@var{client_name} is the name provided by the application, and @var{N}
435is a number which identifies the channel.
436Each writable client will send the acquired data to the FFmpeg input
437device.
438
439Once you have created one or more JACK readable clients, you need to
440connect them to one or more JACK writable clients.
441
442To connect or disconnect JACK clients you can use the @command{jack_connect}
443and @command{jack_disconnect} programs, or do it through a graphical interface,
444for example with @command{qjackctl}.
445
446To list the JACK clients and their properties you can invoke the command
447@command{jack_lsp}.
448
449Follows an example which shows how to capture a JACK readable client
450with @command{ffmpeg}.
451@example
452# Create a JACK writable client with name "ffmpeg".
453$ ffmpeg -f jack -i ffmpeg -y out.wav
454
455# Start the sample jack_metro readable client.
456$ jack_metro -b 120 -d 0.2 -f 4000
457
458# List the current JACK clients.
459$ jack_lsp -c
460system:capture_1
461system:capture_2
462system:playback_1
463system:playback_2
464ffmpeg:input_1
465metro:120_bpm
466
467# Connect metro to the ffmpeg writable client.
468$ jack_connect metro:120_bpm ffmpeg:input_1
469@end example
470
471For more information read:
472@url{http://jackaudio.org/}
473
474@section lavfi
475
476Libavfilter input virtual device.
477
478This input device reads data from the open output pads of a libavfilter
479filtergraph.
480
481For each filtergraph open output, the input device will create a
482corresponding stream which is mapped to the generated output. Currently
483only video data is supported. The filtergraph is specified through the
484option @option{graph}.
485
486@subsection Options
487
488@table @option
489
490@item graph
491Specify the filtergraph to use as input. Each video open output must be
492labelled by a unique string of the form "out@var{N}", where @var{N} is a
493number starting from 0 corresponding to the mapped input stream
494generated by the device.
495The first unlabelled output is automatically assigned to the "out0"
496label, but all the others need to be specified explicitly.
497
498If not specified defaults to the filename specified for the input
499device.
500
501@item graph_file
502Set the filename of the filtergraph to be read and sent to the other
503filters. Syntax of the filtergraph is the same as the one specified by
504the option @var{graph}.
505
506@end table
507
508@subsection Examples
509
510@itemize
511@item
512Create a color video stream and play it back with @command{ffplay}:
513@example
514ffplay -f lavfi -graph "color=c=pink [out0]" dummy
515@end example
516
517@item
518As the previous example, but use filename for specifying the graph
519description, and omit the "out0" label:
520@example
521ffplay -f lavfi color=c=pink
522@end example
523
524@item
525Create three different video test filtered sources and play them:
526@example
527ffplay -f lavfi -graph "testsrc [out0]; testsrc,hflip [out1]; testsrc,negate [out2]" test3
528@end example
529
530@item
531Read an audio stream from a file using the amovie source and play it
532back with @command{ffplay}:
533@example
534ffplay -f lavfi "amovie=test.wav"
535@end example
536
537@item
538Read an audio stream and a video stream and play it back with
539@command{ffplay}:
540@example
541ffplay -f lavfi "movie=test.avi[out0];amovie=test.wav[out1]"
542@end example
543
544@end itemize
545
546@section libcdio
547
548Audio-CD input device based on cdio.
549
550To enable this input device during configuration you need libcdio
551installed on your system. Requires the configure option
552@code{--enable-libcdio}.
553
554This device allows playing and grabbing from an Audio-CD.
555
556For example to copy with @command{ffmpeg} the entire Audio-CD in /dev/sr0,
557you may run the command:
558@example
559ffmpeg -f libcdio -i /dev/sr0 cd.wav
560@end example
561
562@section libdc1394
563
564IIDC1394 input device, based on libdc1394 and libraw1394.
565
566Requires the configure option @code{--enable-libdc1394}.
567
568@section openal
569
570The OpenAL input device provides audio capture on all systems with a
571working OpenAL 1.1 implementation.
572
573To enable this input device during configuration, you need OpenAL
574headers and libraries installed on your system, and need to configure
575FFmpeg with @code{--enable-openal}.
576
577OpenAL headers and libraries should be provided as part of your OpenAL
578implementation, or as an additional download (an SDK). Depending on your
579installation you may need to specify additional flags via the
580@code{--extra-cflags} and @code{--extra-ldflags} for allowing the build
581system to locate the OpenAL headers and libraries.
582
583An incomplete list of OpenAL implementations follows:
584
585@table @strong
586@item Creative
587The official Windows implementation, providing hardware acceleration
588with supported devices and software fallback.
589See @url{http://openal.org/}.
590@item OpenAL Soft
591Portable, open source (LGPL) software implementation. Includes
592backends for the most common sound APIs on the Windows, Linux,
593Solaris, and BSD operating systems.
594See @url{http://kcat.strangesoft.net/openal.html}.
595@item Apple
596OpenAL is part of Core Audio, the official Mac OS X Audio interface.
597See @url{http://developer.apple.com/technologies/mac/audio-and-video.html}
598@end table
599
600This device allows one to capture from an audio input device handled
601through OpenAL.
602
603You need to specify the name of the device to capture in the provided
604filename. If the empty string is provided, the device will
605automatically select the default device. You can get the list of the
606supported devices by using the option @var{list_devices}.
607
608@subsection Options
609
610@table @option
611
612@item channels
613Set the number of channels in the captured audio. Only the values
614@option{1} (monaural) and @option{2} (stereo) are currently supported.
615Defaults to @option{2}.
616
617@item sample_size
618Set the sample size (in bits) of the captured audio. Only the values
619@option{8} and @option{16} are currently supported. Defaults to
620@option{16}.
621
622@item sample_rate
623Set the sample rate (in Hz) of the captured audio.
624Defaults to @option{44.1k}.
625
626@item list_devices
627If set to @option{true}, print a list of devices and exit.
628Defaults to @option{false}.
629
630@end table
631
632@subsection Examples
633
634Print the list of OpenAL supported devices and exit:
635@example
636$ ffmpeg -list_devices true -f openal -i dummy out.ogg
637@end example
638
639Capture from the OpenAL device @file{DR-BT101 via PulseAudio}:
640@example
641$ ffmpeg -f openal -i 'DR-BT101 via PulseAudio' out.ogg
642@end example
643
644Capture from the default device (note the empty string '' as filename):
645@example
646$ ffmpeg -f openal -i '' out.ogg
647@end example
648
649Capture from two devices simultaneously, writing to two different files,
650within the same @command{ffmpeg} command:
651@example
652$ ffmpeg -f openal -i 'DR-BT101 via PulseAudio' out1.ogg -f openal -i 'ALSA Default' out2.ogg
653@end example
654Note: not all OpenAL implementations support multiple simultaneous capture -
655try the latest OpenAL Soft if the above does not work.
656
657@section oss
658
659Open Sound System input device.
660
661The filename to provide to the input device is the device node
662representing the OSS input device, and is usually set to
663@file{/dev/dsp}.
664
665For example to grab from @file{/dev/dsp} using @command{ffmpeg} use the
666command:
667@example
668ffmpeg -f oss -i /dev/dsp /tmp/oss.wav
669@end example
670
671For more information about OSS see:
672@url{http://manuals.opensound.com/usersguide/dsp.html}
673
674@section pulse
675
676PulseAudio input device.
677
678To enable this output device you need to configure FFmpeg with @code{--enable-libpulse}.
679
680The filename to provide to the input device is a source device or the
681string "default"
682
683To list the PulseAudio source devices and their properties you can invoke
684the command @command{pactl list sources}.
685
686More information about PulseAudio can be found on @url{http://www.pulseaudio.org}.
687
688@subsection Options
689@table @option
690@item server
691Connect to a specific PulseAudio server, specified by an IP address.
692Default server is used when not provided.
693
694@item name
695Specify the application name PulseAudio will use when showing active clients,
696by default it is the @code{LIBAVFORMAT_IDENT} string.
697
698@item stream_name
699Specify the stream name PulseAudio will use when showing active streams,
700by default it is "record".
701
702@item sample_rate
703Specify the samplerate in Hz, by default 48kHz is used.
704
705@item channels
706Specify the channels in use, by default 2 (stereo) is set.
707
708@item frame_size
709Specify the number of bytes per frame, by default it is set to 1024.
710
711@item fragment_size
712Specify the minimal buffering fragment in PulseAudio, it will affect the
713audio latency. By default it is unset.
714@end table
715
716@subsection Examples
717Record a stream from default device:
718@example
719ffmpeg -f pulse -i default /tmp/pulse.wav
720@end example
721
722@section qtkit
723
724QTKit input device.
725
726The filename passed as input is parsed to contain either a device name or index.
727The device index can also be given by using -video_device_index.
728A given device index will override any given device name.
729If the desired device consists of numbers only, use -video_device_index to identify it.
730The default device will be chosen if an empty string or the device name "default" is given.
731The available devices can be enumerated by using -list_devices.
732
733@example
734ffmpeg -f qtkit -i "0" out.mpg
735@end example
736
737@example
738ffmpeg -f qtkit -video_device_index 0 -i "" out.mpg
739@end example
740
741@example
742ffmpeg -f qtkit -i "default" out.mpg
743@end example
744
745@example
746ffmpeg -f qtkit -list_devices true -i ""
747@end example
748
749@section sndio
750
751sndio input device.
752
753To enable this input device during configuration you need libsndio
754installed on your system.
755
756The filename to provide to the input device is the device node
757representing the sndio input device, and is usually set to
758@file{/dev/audio0}.
759
760For example to grab from @file{/dev/audio0} using @command{ffmpeg} use the
761command:
762@example
763ffmpeg -f sndio -i /dev/audio0 /tmp/oss.wav
764@end example
765
766@section video4linux2, v4l2
767
768Video4Linux2 input video device.
769
770"v4l2" can be used as alias for "video4linux2".
771
772If FFmpeg is built with v4l-utils support (by using the
773@code{--enable-libv4l2} configure option), it is possible to use it with the
774@code{-use_libv4l2} input device option.
775
776The name of the device to grab is a file device node, usually Linux
777systems tend to automatically create such nodes when the device
778(e.g. an USB webcam) is plugged into the system, and has a name of the
779kind @file{/dev/video@var{N}}, where @var{N} is a number associated to
780the device.
781
782Video4Linux2 devices usually support a limited set of
783@var{width}x@var{height} sizes and frame rates. You can check which are
784supported using @command{-list_formats all} for Video4Linux2 devices.
785Some devices, like TV cards, support one or more standards. It is possible
786to list all the supported standards using @command{-list_standards all}.
787
788The time base for the timestamps is 1 microsecond. Depending on the kernel
789version and configuration, the timestamps may be derived from the real time
790clock (origin at the Unix Epoch) or the monotonic clock (origin usually at
791boot time, unaffected by NTP or manual changes to the clock). The
792@option{-timestamps abs} or @option{-ts abs} option can be used to force
793conversion into the real time clock.
794
795Some usage examples of the video4linux2 device with @command{ffmpeg}
796and @command{ffplay}:
797@itemize
798@item
799Grab and show the input of a video4linux2 device:
800@example
801ffplay -f video4linux2 -framerate 30 -video_size hd720 /dev/video0
802@end example
803
804@item
805Grab and record the input of a video4linux2 device, leave the
806frame rate and size as previously set:
807@example
808ffmpeg -f video4linux2 -input_format mjpeg -i /dev/video0 out.mpeg
809@end example
810@end itemize
811
812For more information about Video4Linux, check @url{http://linuxtv.org/}.
813
814@subsection Options
815
816@table @option
817@item standard
818Set the standard. Must be the name of a supported standard. To get a
819list of the supported standards, use the @option{list_standards}
820option.
821
822@item channel
823Set the input channel number. Default to -1, which means using the
824previously selected channel.
825
826@item video_size
827Set the video frame size. The argument must be a string in the form
828@var{WIDTH}x@var{HEIGHT} or a valid size abbreviation.
829
830@item pixel_format
831Select the pixel format (only valid for raw video input).
832
833@item input_format
834Set the preferred pixel format (for raw video) or a codec name.
835This option allows one to select the input format, when several are
836available.
837
838@item framerate
839Set the preferred video frame rate.
840
841@item list_formats
842List available formats (supported pixel formats, codecs, and frame
843sizes) and exit.
844
845Available values are:
846@table @samp
847@item all
848Show all available (compressed and non-compressed) formats.
849
850@item raw
851Show only raw video (non-compressed) formats.
852
853@item compressed
854Show only compressed formats.
855@end table
856
857@item list_standards
858List supported standards and exit.
859
860Available values are:
861@table @samp
862@item all
863Show all supported standards.
864@end table
865
866@item timestamps, ts
867Set type of timestamps for grabbed frames.
868
869Available values are:
870@table @samp
871@item default
872Use timestamps from the kernel.
873
874@item abs
875Use absolute timestamps (wall clock).
876
877@item mono2abs
878Force conversion from monotonic to absolute timestamps.
879@end table
880
881Default value is @code{default}.
882@end table
883
884@section vfwcap
885
886VfW (Video for Windows) capture input device.
887
888The filename passed as input is the capture driver number, ranging from
8890 to 9. You may use "list" as filename to print a list of drivers. Any
890other filename will be interpreted as device number 0.
891
892@section x11grab
893
894X11 video input device.
895
896Depends on X11, Xext, and Xfixes. Requires the configure option
897@code{--enable-x11grab}.
898
899This device allows one to capture a region of an X11 display.
900
901The filename passed as input has the syntax:
902@example
903[@var{hostname}]:@var{display_number}.@var{screen_number}[+@var{x_offset},@var{y_offset}]
904@end example
905
906@var{hostname}:@var{display_number}.@var{screen_number} specifies the
907X11 display name of the screen to grab from. @var{hostname} can be
908omitted, and defaults to "localhost". The environment variable
909@env{DISPLAY} contains the default display name.
910
911@var{x_offset} and @var{y_offset} specify the offsets of the grabbed
912area with respect to the top-left border of the X11 screen. They
913default to 0.
914
915Check the X11 documentation (e.g. man X) for more detailed information.
916
917Use the @command{dpyinfo} program for getting basic information about the
918properties of your X11 display (e.g. grep for "name" or "dimensions").
919
920For example to grab from @file{:0.0} using @command{ffmpeg}:
921@example
922ffmpeg -f x11grab -framerate 25 -video_size cif -i :0.0 out.mpg
923@end example
924
925Grab at position @code{10,20}:
926@example
927ffmpeg -f x11grab -framerate 25 -video_size cif -i :0.0+10,20 out.mpg
928@end example
929
930@subsection Options
931
932@table @option
933@item draw_mouse
934Specify whether to draw the mouse pointer. A value of @code{0} specify
935not to draw the pointer. Default value is @code{1}.
936
937@item follow_mouse
938Make the grabbed area follow the mouse. The argument can be
939@code{centered} or a number of pixels @var{PIXELS}.
940
941When it is specified with "centered", the grabbing region follows the mouse
942pointer and keeps the pointer at the center of region; otherwise, the region
943follows only when the mouse pointer reaches within @var{PIXELS} (greater than
944zero) to the edge of region.
945
946For example:
947@example
948ffmpeg -f x11grab -follow_mouse centered -framerate 25 -video_size cif -i :0.0 out.mpg
949@end example
950
951To follow only when the mouse pointer reaches within 100 pixels to edge:
952@example
953ffmpeg -f x11grab -follow_mouse 100 -framerate 25 -video_size cif -i :0.0 out.mpg
954@end example
955
956@item framerate
957Set the grabbing frame rate. Default value is @code{ntsc},
958corresponding to a frame rate of @code{30000/1001}.
959
960@item show_region
961Show grabbed region on screen.
962
963If @var{show_region} is specified with @code{1}, then the grabbing
964region will be indicated on screen. With this option, it is easy to
965know what is being grabbed if only a portion of the screen is grabbed.
966
967For example:
968@example
969ffmpeg -f x11grab -show_region 1 -framerate 25 -video_size cif -i :0.0+10,20 out.mpg
970@end example
971
972With @var{follow_mouse}:
973@example
974ffmpeg -f x11grab -follow_mouse centered -show_region 1 -framerate 25 -video_size cif -i :0.0 out.mpg
975@end example
976
977@item video_size
978Set the video frame size. Default value is @code{vga}.
979
980@item use_shm
981Use the MIT-SHM extension for shared memory. Default value is @code{1}.
982It may be necessary to disable it for remote displays.
983@end table
984
f6fa7814
DM
985@section decklink
986
987The decklink input device provides capture capabilities for Blackmagic
988DeckLink devices.
989
990To enable this input device, you need the Blackmagic DeckLink SDK and you
991need to configure with the appropriate @code{--extra-cflags}
992and @code{--extra-ldflags}.
993On Windows, you need to run the IDL files through @command{widl}.
994
995DeckLink is very picky about the formats it supports. Pixel format is always
996uyvy422, framerate and video size must be determined for your device with
997@command{-list_formats 1}. Audio sample rate is always 48 kHz and the number
998of channels currently is limited to 2 (stereo).
999
1000@subsection Options
1001
1002@table @option
1003
1004@item list_devices
1005If set to @option{true}, print a list of devices and exit.
1006Defaults to @option{false}.
1007
1008@item list_formats
1009If set to @option{true}, print a list of supported formats and exit.
1010Defaults to @option{false}.
1011
1012@end table
1013
1014@subsection Examples
1015
1016@itemize
1017
1018@item
1019List input devices:
1020@example
1021ffmpeg -f decklink -list_devices 1 -i dummy
1022@end example
1023
1024@item
1025List supported formats:
1026@example
1027ffmpeg -f decklink -list_formats 1 -i 'Intensity Pro'
1028@end example
1029
1030@item
1031Capture video clip at 1080i50 (format 11):
1032@example
1033ffmpeg -f decklink -i 'Intensity Pro@@11' -acodec copy -vcodec copy output.avi
1034@end example
1035
1036@end itemize
1037
1038
2ba45a60 1039@c man end INPUT DEVICES