You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1222 lines
36KB

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