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.

1416 lines
40KB

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