]> 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 @subsection Options
230
231 @table @option
232
233 @item graph
234 Specify the filtergraph to use as input. Each video open output must be
235 labelled by a unique string of the form "out@var{N}", where @var{N} is a
236 number starting from 0 corresponding to the mapped input stream
237 generated by the device.
238 The first unlabelled output is automatically assigned to the "out0"
239 label, but all the others need to be specified explicitely.
240
241 If not specified defaults to the filename specified for the input
242 device.
243 @end table
244
245 @subsection Examples
246
247 @itemize
248 @item
249 Create a color video stream and play it back with @file{ffplay}:
250 @example
251 ffplay -f lavfi -graph "color=pink [out0]" dummy
252 @end example
253
254 @item
255 As the previous example, but use filename for specifying the graph
256 description, and omit the "out0" label:
257 @example
258 ffplay -f lavfi color=pink
259 @end example
260
261 @item
262 Create three different video test filtered sources and play them:
263 @example
264 ffplay -f lavfi -graph "testsrc [out0]; testsrc,hflip [out1]; testsrc,negate [out2]" test3
265 @end example
266
267 @item
268 Read an audio stream from a file using the amovie source and play it
269 back with @file{ffplay}:
270 @example
271 ffplay -f lavfi "amovie=test.wav"
272 @end example
273
274 @item
275 Read an audio stream and a video stream and play it back with
276 @file{ffplay}:
277 @example
278 ffplay -f lavfi "movie=test.avi[out0];amovie=test.wav[out1]"
279 @end example
280
281 @end itemize
282
283 @section libdc1394
284
285 IIDC1394 input device, based on libdc1394 and libraw1394.
286
287 @section openal
288
289 The OpenAL input device provides audio capture on all systems with a
290 working OpenAL 1.1 implementation.
291
292 To enable this input device during configuration, you need OpenAL
293 headers and libraries installed on your system, and need to configure
294 FFmpeg with @code{--enable-openal}.
295
296 OpenAL headers and libraries should be provided as part of your OpenAL
297 implementation, or as an additional download (an SDK). Depending on your
298 installation you may need to specify additional flags via the
299 @code{--extra-cflags} and @code{--extra-ldflags} for allowing the build
300 system to locate the OpenAL headers and libraries.
301
302 An incomplete list of OpenAL implementations follows:
303
304 @table @strong
305 @item Creative
306 The official Windows implementation, providing hardware acceleration
307 with supported devices and software fallback.
308 See @url{http://openal.org/}.
309 @item OpenAL Soft
310 Portable, open source (LGPL) software implementation. Includes
311 backends for the most common sound APIs on the Windows, Linux,
312 Solaris, and BSD operating systems.
313 See @url{http://kcat.strangesoft.net/openal.html}.
314 @item Apple
315 OpenAL is part of Core Audio, the official Mac OS X Audio interface.
316 See @url{http://developer.apple.com/technologies/mac/audio-and-video.html}
317 @end table
318
319 This device allows to capture from an audio input device handled
320 through OpenAL.
321
322 You need to specify the name of the device to capture in the provided
323 filename. If the empty string is provided, the device will
324 automatically select the default device. You can get the list of the
325 supported devices by using the option @var{list_devices}.
326
327 @subsection Options
328
329 @table @option
330
331 @item channels
332 Set the number of channels in the captured audio. Only the values
333 @option{1} (monaural) and @option{2} (stereo) are currently supported.
334 Defaults to @option{2}.
335
336 @item sample_size
337 Set the sample size (in bits) of the captured audio. Only the values
338 @option{8} and @option{16} are currently supported. Defaults to
339 @option{16}.
340
341 @item sample_rate
342 Set the sample rate (in Hz) of the captured audio.
343 Defaults to @option{44.1k}.
344
345 @item list_devices
346 If set to @option{true}, print a list of devices and exit.
347 Defaults to @option{false}.
348
349 @end table
350
351 @subsection Examples
352
353 Print the list of OpenAL supported devices and exit:
354 @example
355 $ ffmpeg -list_devices true -f openal -i dummy out.ogg
356 @end example
357
358 Capture from the OpenAL device @file{DR-BT101 via PulseAudio}:
359 @example
360 $ ffmpeg -f openal -i 'DR-BT101 via PulseAudio' out.ogg
361 @end example
362
363 Capture from the default device (note the empty string '' as filename):
364 @example
365 $ ffmpeg -f openal -i '' out.ogg
366 @end example
367
368 Capture from two devices simultaneously, writing to two different files,
369 within the same @file{ffmpeg} command:
370 @example
371 $ ffmpeg -f openal -i 'DR-BT101 via PulseAudio' out1.ogg -f openal -i 'ALSA Default' out2.ogg
372 @end example
373 Note: not all OpenAL implementations support multiple simultaneous capture -
374 try the latest OpenAL Soft if the above does not work.
375
376 @section oss
377
378 Open Sound System input device.
379
380 The filename to provide to the input device is the device node
381 representing the OSS input device, and is usually set to
382 @file{/dev/dsp}.
383
384 For example to grab from @file{/dev/dsp} using @file{ffmpeg} use the
385 command:
386 @example
387 ffmpeg -f oss -i /dev/dsp /tmp/oss.wav
388 @end example
389
390 For more information about OSS see:
391 @url{http://manuals.opensound.com/usersguide/dsp.html}
392
393 @section sndio
394
395 sndio input device.
396
397 To enable this input device during configuration you need libsndio
398 installed on your system.
399
400 The filename to provide to the input device is the device node
401 representing the sndio input device, and is usually set to
402 @file{/dev/audio0}.
403
404 For example to grab from @file{/dev/audio0} using @file{ffmpeg} use the
405 command:
406 @example
407 ffmpeg -f sndio -i /dev/audio0 /tmp/oss.wav
408 @end example
409
410 @section video4linux and video4linux2
411
412 Video4Linux and Video4Linux2 input video devices.
413
414 The name of the device to grab is a file device node, usually Linux
415 systems tend to automatically create such nodes when the device
416 (e.g. an USB webcam) is plugged into the system, and has a name of the
417 kind @file{/dev/video@var{N}}, where @var{N} is a number associated to
418 the device.
419
420 Video4Linux and Video4Linux2 devices only support a limited set of
421 @var{width}x@var{height} sizes and framerates. You can check which are
422 supported for example with the command @file{dov4l} for Video4Linux
423 devices and the command @file{v4l-info} for Video4Linux2 devices.
424
425 If the size for the device is set to 0x0, the input device will
426 try to autodetect the size to use.
427 Only for the video4linux2 device, if the frame rate is set to 0/0 the
428 input device will use the frame rate value already set in the driver.
429
430 Video4Linux support is deprecated since Linux 2.6.30, and will be
431 dropped in later versions.
432
433 Follow some usage examples of the video4linux devices with the ff*
434 tools.
435 @example
436 # Grab and show the input of a video4linux device, frame rate is set
437 # to the default of 25/1.
438 ffplay -s 320x240 -f video4linux /dev/video0
439
440 # Grab and show the input of a video4linux2 device, autoadjust size.
441 ffplay -f video4linux2 /dev/video0
442
443 # Grab and record the input of a video4linux2 device, autoadjust size,
444 # frame rate value defaults to 0/0 so it is read from the video4linux2
445 # driver.
446 ffmpeg -f video4linux2 -i /dev/video0 out.mpeg
447 @end example
448
449 @section vfwcap
450
451 VfW (Video for Windows) capture input device.
452
453 The filename passed as input is the capture driver number, ranging from
454 0 to 9. You may use "list" as filename to print a list of drivers. Any
455 other filename will be interpreted as device number 0.
456
457 @section x11grab
458
459 X11 video input device.
460
461 This device allows to capture a region of an X11 display.
462
463 The filename passed as input has the syntax:
464 @example
465 [@var{hostname}]:@var{display_number}.@var{screen_number}[+@var{x_offset},@var{y_offset}]
466 @end example
467
468 @var{hostname}:@var{display_number}.@var{screen_number} specifies the
469 X11 display name of the screen to grab from. @var{hostname} can be
470 ommitted, and defaults to "localhost". The environment variable
471 @env{DISPLAY} contains the default display name.
472
473 @var{x_offset} and @var{y_offset} specify the offsets of the grabbed
474 area with respect to the top-left border of the X11 screen. They
475 default to 0.
476
477 Check the X11 documentation (e.g. man X) for more detailed information.
478
479 Use the @file{dpyinfo} program for getting basic information about the
480 properties of your X11 display (e.g. grep for "name" or "dimensions").
481
482 For example to grab from @file{:0.0} using @file{ffmpeg}:
483 @example
484 ffmpeg -f x11grab -r 25 -s cif -i :0.0 out.mpg
485
486 # Grab at position 10,20.
487 ffmpeg -f x11grab -r 25 -s cif -i :0.0+10,20 out.mpg
488 @end example
489
490 @subsection @var{follow_mouse} AVOption
491
492 The syntax is:
493 @example
494 -follow_mouse centered|@var{PIXELS}
495 @end example
496
497 When it is specified with "centered", the grabbing region follows the mouse
498 pointer and keeps the pointer at the center of region; otherwise, the region
499 follows only when the mouse pointer reaches within @var{PIXELS} (greater than
500 zero) to the edge of region.
501
502 For example:
503 @example
504 ffmpeg -f x11grab -follow_mouse centered -r 25 -s cif -i :0.0 out.mpg
505
506 # Follows only when the mouse pointer reaches within 100 pixels to edge
507 ffmpeg -f x11grab -follow_mouse 100 -r 25 -s cif -i :0.0 out.mpg
508 @end example
509
510 @subsection @var{show_region} AVOption
511
512 The syntax is:
513 @example
514 -show_region 1
515 @end example
516
517 If @var{show_region} AVOption is specified with @var{1}, then the grabbing
518 region will be indicated on screen. With this option, it's easy to know what is
519 being grabbed if only a portion of the screen is grabbed.
520
521 For example:
522 @example
523 ffmpeg -f x11grab -show_region 1 -r 25 -s cif -i :0.0+10,20 out.mpg
524
525 # With follow_mouse
526 ffmpeg -f x11grab -follow_mouse centered -show_region 1  -r 25 -s cif -i :0.0 out.mpg
527 @end example
528
529 @c man end INPUT DEVICES