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.

1592 lines
47KB

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