]> git.sesse.net Git - ffmpeg/blob - doc/indevs.texi
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / doc / indevs.texi
1 @chapter Input Devices
2 @c man begin INPUT DEVICES
3
4 Input devices are configured elements in FFmpeg which allow to access
5 the data coming from a multimedia device attached to your system.
6
7 When you configure your FFmpeg build, all the supported input devices
8 are enabled by default. You can list all available ones using the
9 configure option "--list-indevs".
10
11 You can disable all the input devices using the configure option
12 "--disable-indevs", and selectively enable an input device using the
13 option "--enable-indev=@var{INDEV}", or you can disable a particular
14 input device using the option "--disable-indev=@var{INDEV}".
15
16 The option "-formats" of the ff* tools will display the list of
17 supported input devices (amongst the demuxers).
18
19 A description of the currently available input devices follows.
20
21 @section alsa
22
23 ALSA (Advanced Linux Sound Architecture) input device.
24
25 To enable this input device during configuration you need libasound
26 installed on your system.
27
28 This device allows capturing from an ALSA device. The name of the
29 device to capture has to be an ALSA card identifier.
30
31 An ALSA identifier has the syntax:
32 @example
33 hw:@var{CARD}[,@var{DEV}[,@var{SUBDEV}]]
34 @end example
35
36 where the @var{DEV} and @var{SUBDEV} components are optional.
37
38 The three arguments (in order: @var{CARD},@var{DEV},@var{SUBDEV})
39 specify card number or identifier, device number and subdevice number
40 (-1 means any).
41
42 To see the list of cards currently recognized by your system check the
43 files @file{/proc/asound/cards} and @file{/proc/asound/devices}.
44
45 For example to capture with @file{ffmpeg} from an ALSA device with
46 card id 0, you may run the command:
47 @example
48 ffmpeg -f alsa -i hw:0 alsaout.wav
49 @end example
50
51 For more information see:
52 @url{http://www.alsa-project.org/alsa-doc/alsa-lib/pcm.html}
53
54 @section bktr
55
56 BSD video input device.
57
58 @section dshow
59
60 Windows DirectShow input device.
61
62 DirectShow support is enabled when FFmpeg is built with mingw-w64.
63 Currently only audio and video devices are supported.
64
65 Multiple devices may be opened as separate inputs, but they may also be
66 opened on the same input, which should improve synchronism between them.
67
68 The input name should be in the format:
69
70 @example
71 @var{TYPE}=@var{NAME}[:@var{TYPE}=@var{NAME}]
72 @end example
73
74 where @var{TYPE} can be either @var{audio} or @var{video},
75 and @var{NAME} is the device's name.
76
77 @subsection Options
78
79 If no options are specified, the device's defaults are used.
80 If the device does not support the requested options, it will
81 fail to open.
82
83 @table @option
84
85 @item video_size
86 Set the video size in the captured video.
87
88 @item framerate
89 Set the framerate in the captured video.
90
91 @item sample_rate
92 Set the sample rate (in Hz) of the captured audio.
93
94 @item sample_size
95 Set the sample size (in bits) of the captured audio.
96
97 @item channels
98 Set the number of channels in the captured audio.
99
100 @item list_devices
101 If set to @option{true}, print a list of devices and exit.
102
103 @item list_options
104 If set to @option{true}, print a list of selected device's options
105 and exit.
106
107 @end table
108
109 @subsection Examples
110
111 @itemize
112
113 @item
114 Print the list of DirectShow supported devices and exit:
115 @example
116 $ ffmpeg -list_devices true -f dshow -i dummy
117 @end example
118
119 @item
120 Open video device @var{Camera}:
121 @example
122 $ ffmpeg -f dshow -i video="Camera"
123 @end example
124
125 @item
126 Open video device @var{Camera} and audio device @var{Microphone}:
127 @example
128 $ ffmpeg -f dshow -i video="Camera":audio="Microphone"
129 @end example
130
131 @item
132 Print the list of supported options in selected device and exit:
133 @example
134 $ ffmpeg -list_options true -f dshow -i video="Camera"
135 @end example
136
137 @end itemize
138
139 @section dv1394
140
141 Linux DV 1394 input device.
142
143 @section fbdev
144
145 Linux framebuffer input device.
146
147 The Linux framebuffer is a graphic hardware-independent abstraction
148 layer to show graphics on a computer monitor, typically on the
149 console. It is accessed through a file device node, usually
150 @file{/dev/fb0}.
151
152 For more detailed information read the file
153 Documentation/fb/framebuffer.txt included in the Linux source tree.
154
155 To record from the framebuffer device @file{/dev/fb0} with
156 @file{ffmpeg}:
157 @example
158 ffmpeg -f fbdev -r 10 -i /dev/fb0 out.avi
159 @end example
160
161 You can take a single screenshot image with the command:
162 @example
163 ffmpeg -f fbdev -vframes 1 -r 1 -i /dev/fb0 screenshot.jpeg
164 @end example
165
166 See also @url{http://linux-fbdev.sourceforge.net/}, and fbset(1).
167
168 @section jack
169
170 JACK input device.
171
172 To enable this input device during configuration you need libjack
173 installed on your system.
174
175 A JACK input device creates one or more JACK writable clients, one for
176 each audio channel, with name @var{client_name}:input_@var{N}, where
177 @var{client_name} is the name provided by the application, and @var{N}
178 is a number which identifies the channel.
179 Each writable client will send the acquired data to the FFmpeg input
180 device.
181
182 Once you have created one or more JACK readable clients, you need to
183 connect them to one or more JACK writable clients.
184
185 To connect or disconnect JACK clients you can use the
186 @file{jack_connect} and @file{jack_disconnect} programs, or do it
187 through a graphical interface, for example with @file{qjackctl}.
188
189 To list the JACK clients and their properties you can invoke the command
190 @file{jack_lsp}.
191
192 Follows an example which shows how to capture a JACK readable client
193 with @file{ffmpeg}.
194 @example
195 # Create a JACK writable client with name "ffmpeg".
196 $ ffmpeg -f jack -i ffmpeg -y out.wav
197
198 # Start the sample jack_metro readable client.
199 $ jack_metro -b 120 -d 0.2 -f 4000
200
201 # List the current JACK clients.
202 $ jack_lsp -c
203 system:capture_1
204 system:capture_2
205 system:playback_1
206 system:playback_2
207 ffmpeg:input_1
208 metro:120_bpm
209
210 # Connect metro to the ffmpeg writable client.
211 $ jack_connect metro:120_bpm ffmpeg:input_1
212 @end example
213
214 For more information read:
215 @url{http://jackaudio.org/}
216
217 @section lavfi
218
219 Libavfilter input virtual device.
220
221 This input device reads data from the open output pads of a libavfilter
222 filtergraph.
223
224 For each filtergraph open output, the input device will create a
225 corresponding stream which is mapped to the generated output. Currently
226 only video data is supported. The filtergraph is specified through the
227 option @option{graph}.
228
229 To enable this input device, you need to configure your build with
230 @code{--enable-libavfilter}.
231
232 @subsection Options
233
234 @table @option
235
236 @item graph
237 Specify the filtergraph to use as input. Each video open output must be
238 labelled by a unique string of the form "out@var{N}", where @var{N} is a
239 number starting from 0 corresponding to the mapped input stream
240 generated by the device.
241 The first unlabelled output is automatically assigned to the "out0"
242 label, but all the others need to be specified explicitely.
243
244 If not specified defaults to the filename specified for the input
245 device.
246 @end table
247
248 @subsection Examples
249
250 @itemize
251 @item
252 Create a color video stream and play it back with @file{ffplay}:
253 @example
254 ffplay -f lavfi -graph "color=pink [out0]" dummy
255 @end example
256
257 @item
258 As the previous example, but use filename for specifying the graph
259 description, and omit the "out0" label:
260 @example
261 ffplay -f lavfi color=pink
262 @end example
263
264 @item
265 Create three different video test filtered sources and play them:
266 @example
267 ffplay -f lavfi -graph "testsrc [out0]; testsrc,hflip [out1]; testsrc,negate [out2]" test3
268 @end example
269
270 @item
271 Read an audio stream from a file using the amovie source and play it
272 back with @file{ffplay}:
273 @example
274 ffplay -f lavfi "amovie=test.wav"
275 @end example
276
277 @item
278 Read an audio stream and a video stream and play it back with
279 @file{ffplay}:
280 @example
281 ffplay -f lavfi "movie=test.avi[out0];amovie=test.wav[out1]"
282 @end example
283
284 @end itemize
285
286 @section libdc1394
287
288 IIDC1394 input device, based on libdc1394 and libraw1394.
289
290 @section openal
291
292 The OpenAL input device provides audio capture on all systems with a
293 working OpenAL 1.1 implementation.
294
295 To enable this input device during configuration, you need OpenAL
296 headers and libraries installed on your system, and need to configure
297 FFmpeg with @code{--enable-openal}.
298
299 OpenAL headers and libraries should be provided as part of your OpenAL
300 implementation, or as an additional download (an SDK). Depending on your
301 installation you may need to specify additional flags via the
302 @code{--extra-cflags} and @code{--extra-ldflags} for allowing the build
303 system to locate the OpenAL headers and libraries.
304
305 An incomplete list of OpenAL implementations follows:
306
307 @table @strong
308 @item Creative
309 The official Windows implementation, providing hardware acceleration
310 with supported devices and software fallback.
311 See @url{http://openal.org/}.
312 @item OpenAL Soft
313 Portable, open source (LGPL) software implementation. Includes
314 backends for the most common sound APIs on the Windows, Linux,
315 Solaris, and BSD operating systems.
316 See @url{http://kcat.strangesoft.net/openal.html}.
317 @item Apple
318 OpenAL is part of Core Audio, the official Mac OS X Audio interface.
319 See @url{http://developer.apple.com/technologies/mac/audio-and-video.html}
320 @end table
321
322 This device allows to capture from an audio input device handled
323 through OpenAL.
324
325 You need to specify the name of the device to capture in the provided
326 filename. If the empty string is provided, the device will
327 automatically select the default device. You can get the list of the
328 supported devices by using the option @var{list_devices}.
329
330 @subsection Options
331
332 @table @option
333
334 @item channels
335 Set the number of channels in the captured audio. Only the values
336 @option{1} (monaural) and @option{2} (stereo) are currently supported.
337 Defaults to @option{2}.
338
339 @item sample_size
340 Set the sample size (in bits) of the captured audio. Only the values
341 @option{8} and @option{16} are currently supported. Defaults to
342 @option{16}.
343
344 @item sample_rate
345 Set the sample rate (in Hz) of the captured audio.
346 Defaults to @option{44.1k}.
347
348 @item list_devices
349 If set to @option{true}, print a list of devices and exit.
350 Defaults to @option{false}.
351
352 @end table
353
354 @subsection Examples
355
356 Print the list of OpenAL supported devices and exit:
357 @example
358 $ ffmpeg -list_devices true -f openal -i dummy out.ogg
359 @end example
360
361 Capture from the OpenAL device @file{DR-BT101 via PulseAudio}:
362 @example
363 $ ffmpeg -f openal -i 'DR-BT101 via PulseAudio' out.ogg
364 @end example
365
366 Capture from the default device (note the empty string '' as filename):
367 @example
368 $ ffmpeg -f openal -i '' out.ogg
369 @end example
370
371 Capture from two devices simultaneously, writing to two different files,
372 within the same @file{ffmpeg} command:
373 @example
374 $ ffmpeg -f openal -i 'DR-BT101 via PulseAudio' out1.ogg -f openal -i 'ALSA Default' out2.ogg
375 @end example
376 Note: not all OpenAL implementations support multiple simultaneous capture -
377 try the latest OpenAL Soft if the above does not work.
378
379 @section oss
380
381 Open Sound System input device.
382
383 The filename to provide to the input device is the device node
384 representing the OSS input device, and is usually set to
385 @file{/dev/dsp}.
386
387 For example to grab from @file{/dev/dsp} using @file{ffmpeg} use the
388 command:
389 @example
390 ffmpeg -f oss -i /dev/dsp /tmp/oss.wav
391 @end example
392
393 For more information about OSS see:
394 @url{http://manuals.opensound.com/usersguide/dsp.html}
395
396 @section sndio
397
398 sndio input device.
399
400 To enable this input device during configuration you need libsndio
401 installed on your system.
402
403 The filename to provide to the input device is the device node
404 representing the sndio input device, and is usually set to
405 @file{/dev/audio0}.
406
407 For example to grab from @file{/dev/audio0} using @file{ffmpeg} use the
408 command:
409 @example
410 ffmpeg -f sndio -i /dev/audio0 /tmp/oss.wav
411 @end example
412
413 @section video4linux and video4linux2
414
415 Video4Linux and Video4Linux2 input video devices.
416
417 The name of the device to grab is a file device node, usually Linux
418 systems tend to automatically create such nodes when the device
419 (e.g. an USB webcam) is plugged into the system, and has a name of the
420 kind @file{/dev/video@var{N}}, where @var{N} is a number associated to
421 the device.
422
423 Video4Linux and Video4Linux2 devices only support a limited set of
424 @var{width}x@var{height} sizes and framerates. You can check which are
425 supported for example with the command @file{dov4l} for Video4Linux
426 devices and the command @file{v4l-info} for Video4Linux2 devices.
427
428 If the size for the device is set to 0x0, the input device will
429 try to autodetect the size to use.
430 Only for the video4linux2 device, if the frame rate is set to 0/0 the
431 input device will use the frame rate value already set in the driver.
432
433 Video4Linux support is deprecated since Linux 2.6.30, and will be
434 dropped in later versions.
435
436 Follow some usage examples of the video4linux devices with the ff*
437 tools.
438 @example
439 # Grab and show the input of a video4linux device, frame rate is set
440 # to the default of 25/1.
441 ffplay -s 320x240 -f video4linux /dev/video0
442
443 # Grab and show the input of a video4linux2 device, autoadjust size.
444 ffplay -f video4linux2 /dev/video0
445
446 # Grab and record the input of a video4linux2 device, autoadjust size,
447 # frame rate value defaults to 0/0 so it is read from the video4linux2
448 # driver.
449 ffmpeg -f video4linux2 -i /dev/video0 out.mpeg
450 @end example
451
452 @section vfwcap
453
454 VfW (Video for Windows) capture input device.
455
456 The filename passed as input is the capture driver number, ranging from
457 0 to 9. You may use "list" as filename to print a list of drivers. Any
458 other filename will be interpreted as device number 0.
459
460 @section x11grab
461
462 X11 video input device.
463
464 This device allows to capture a region of an X11 display.
465
466 The filename passed as input has the syntax:
467 @example
468 [@var{hostname}]:@var{display_number}.@var{screen_number}[+@var{x_offset},@var{y_offset}]
469 @end example
470
471 @var{hostname}:@var{display_number}.@var{screen_number} specifies the
472 X11 display name of the screen to grab from. @var{hostname} can be
473 ommitted, and defaults to "localhost". The environment variable
474 @env{DISPLAY} contains the default display name.
475
476 @var{x_offset} and @var{y_offset} specify the offsets of the grabbed
477 area with respect to the top-left border of the X11 screen. They
478 default to 0.
479
480 Check the X11 documentation (e.g. man X) for more detailed information.
481
482 Use the @file{dpyinfo} program for getting basic information about the
483 properties of your X11 display (e.g. grep for "name" or "dimensions").
484
485 For example to grab from @file{:0.0} using @file{ffmpeg}:
486 @example
487 ffmpeg -f x11grab -r 25 -s cif -i :0.0 out.mpg
488
489 # Grab at position 10,20.
490 ffmpeg -f x11grab -r 25 -s cif -i :0.0+10,20 out.mpg
491 @end example
492
493 @subsection @var{follow_mouse} AVOption
494
495 The syntax is:
496 @example
497 -follow_mouse centered|@var{PIXELS}
498 @end example
499
500 When it is specified with "centered", the grabbing region follows the mouse
501 pointer and keeps the pointer at the center of region; otherwise, the region
502 follows only when the mouse pointer reaches within @var{PIXELS} (greater than
503 zero) to the edge of region.
504
505 For example:
506 @example
507 ffmpeg -f x11grab -follow_mouse centered -r 25 -s cif -i :0.0 out.mpg
508
509 # Follows only when the mouse pointer reaches within 100 pixels to edge
510 ffmpeg -f x11grab -follow_mouse 100 -r 25 -s cif -i :0.0 out.mpg
511 @end example
512
513 @subsection @var{show_region} AVOption
514
515 The syntax is:
516 @example
517 -show_region 1
518 @end example
519
520 If @var{show_region} AVOption is specified with @var{1}, then the grabbing
521 region will be indicated on screen. With this option, it's easy to know what is
522 being grabbed if only a portion of the screen is grabbed.
523
524 For example:
525 @example
526 ffmpeg -f x11grab -show_region 1 -r 25 -s cif -i :0.0+10,20 out.mpg
527
528 # With follow_mouse
529 ffmpeg -f x11grab -follow_mouse centered -show_region 1  -r 25 -s cif -i :0.0 out.mpg
530 @end example
531
532 @c man end INPUT DEVICES