indevs.texi 39 KB

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