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.

1375 lines
39KB

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