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.

1469 lines
42KB

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