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.

521 lines
15KB

  1. @chapter Output Devices
  2. @c man begin OUTPUT DEVICES
  3. Output devices are configured elements in FFmpeg that can write
  4. multimedia data to an output device attached to your system.
  5. When you configure your FFmpeg build, all the supported output devices
  6. are enabled by default. You can list all available ones using the
  7. configure option "--list-outdevs".
  8. You can disable all the output devices using the configure option
  9. "--disable-outdevs", and selectively enable an output device using the
  10. option "--enable-outdev=@var{OUTDEV}", or you can disable a particular
  11. input device using the option "--disable-outdev=@var{OUTDEV}".
  12. The option "-devices" of the ff* tools will display the list of
  13. enabled output devices.
  14. A description of the currently available output devices follows.
  15. @section alsa
  16. ALSA (Advanced Linux Sound Architecture) output device.
  17. @subsection Examples
  18. @itemize
  19. @item
  20. Play a file on default ALSA device:
  21. @example
  22. ffmpeg -i INPUT -f alsa default
  23. @end example
  24. @item
  25. Play a file on soundcard 1, audio device 7:
  26. @example
  27. ffmpeg -i INPUT -f alsa hw:1,7
  28. @end example
  29. @end itemize
  30. @section AudioToolbox
  31. AudioToolbox output device.
  32. Allows native output to CoreAudio devices on OSX.
  33. The output filename can be empty (or @code{-}) to refer to the default system output device or a number that refers to the device index as shown using: @code{-list_devices true}.
  34. Alternatively, the audio input device can be chosen by index using the
  35. @option{
  36. -audio_device_index <INDEX>
  37. }
  38. , overriding any device name or index given in the input filename.
  39. All available devices can be enumerated by using @option{-list_devices true}, listing
  40. all device names, UIDs and corresponding indices.
  41. @subsection Options
  42. AudioToolbox supports the following options:
  43. @table @option
  44. @item -audio_device_index <INDEX>
  45. Specify the audio device by its index. Overrides anything given in the output filename.
  46. @end table
  47. @subsection Examples
  48. @itemize
  49. @item
  50. Print the list of supported devices and output a sine wave to the default device:
  51. @example
  52. $ ffmpeg -f lavfi -i sine=r=44100 -f audiotoolbox -list_devices true -
  53. @end example
  54. @item
  55. Output a sine wave to the device with the index 2, overriding any output filename:
  56. @example
  57. $ ffmpeg -f lavfi -i sine=r=44100 -f audiotoolbox -audio_device_index 2 -
  58. @end example
  59. @end itemize
  60. @section caca
  61. CACA output device.
  62. This output device allows one to show a video stream in CACA window.
  63. Only one CACA window is allowed per application, so you can
  64. have only one instance of this output device in an application.
  65. To enable this output device you need to configure FFmpeg with
  66. @code{--enable-libcaca}.
  67. libcaca is a graphics library that outputs text instead of pixels.
  68. For more information about libcaca, check:
  69. @url{http://caca.zoy.org/wiki/libcaca}
  70. @subsection Options
  71. @table @option
  72. @item window_title
  73. Set the CACA window title, if not specified default to the filename
  74. specified for the output device.
  75. @item window_size
  76. Set the CACA window size, can be a string of the form
  77. @var{width}x@var{height} or a video size abbreviation.
  78. If not specified it defaults to the size of the input video.
  79. @item driver
  80. Set display driver.
  81. @item algorithm
  82. Set dithering algorithm. Dithering is necessary
  83. because the picture being rendered has usually far more colours than
  84. the available palette.
  85. The accepted values are listed with @code{-list_dither algorithms}.
  86. @item antialias
  87. Set antialias method. Antialiasing smoothens the rendered
  88. image and avoids the commonly seen staircase effect.
  89. The accepted values are listed with @code{-list_dither antialiases}.
  90. @item charset
  91. Set which characters are going to be used when rendering text.
  92. The accepted values are listed with @code{-list_dither charsets}.
  93. @item color
  94. Set color to be used when rendering text.
  95. The accepted values are listed with @code{-list_dither colors}.
  96. @item list_drivers
  97. If set to @option{true}, print a list of available drivers and exit.
  98. @item list_dither
  99. List available dither options related to the argument.
  100. The argument must be one of @code{algorithms}, @code{antialiases},
  101. @code{charsets}, @code{colors}.
  102. @end table
  103. @subsection Examples
  104. @itemize
  105. @item
  106. The following command shows the @command{ffmpeg} output is an
  107. CACA window, forcing its size to 80x25:
  108. @example
  109. ffmpeg -i INPUT -c:v rawvideo -pix_fmt rgb24 -window_size 80x25 -f caca -
  110. @end example
  111. @item
  112. Show the list of available drivers and exit:
  113. @example
  114. ffmpeg -i INPUT -pix_fmt rgb24 -f caca -list_drivers true -
  115. @end example
  116. @item
  117. Show the list of available dither colors and exit:
  118. @example
  119. ffmpeg -i INPUT -pix_fmt rgb24 -f caca -list_dither colors -
  120. @end example
  121. @end itemize
  122. @section decklink
  123. The decklink output device provides playback capabilities for Blackmagic
  124. DeckLink devices.
  125. To enable this output device, you need the Blackmagic DeckLink SDK and you
  126. need to configure with the appropriate @code{--extra-cflags}
  127. and @code{--extra-ldflags}.
  128. On Windows, you need to run the IDL files through @command{widl}.
  129. DeckLink is very picky about the formats it supports. Pixel format is always
  130. uyvy422, framerate, field order and video size must be determined for your
  131. device with @command{-list_formats 1}. Audio sample rate is always 48 kHz.
  132. @subsection Options
  133. @table @option
  134. @item list_devices
  135. If set to @option{true}, print a list of devices and exit.
  136. Defaults to @option{false}. This option is deprecated, please use the
  137. @code{-sinks} option of ffmpeg to list the available output devices.
  138. @item list_formats
  139. If set to @option{true}, print a list of supported formats and exit.
  140. Defaults to @option{false}.
  141. @item preroll
  142. Amount of time to preroll video in seconds.
  143. Defaults to @option{0.5}.
  144. @item duplex_mode
  145. Sets the decklink device duplex mode. Must be @samp{unset}, @samp{half} or @samp{full}.
  146. Defaults to @samp{unset}.
  147. @item timing_offset
  148. Sets the genlock timing pixel offset on the used output.
  149. Defaults to @samp{unset}.
  150. @end table
  151. @subsection Examples
  152. @itemize
  153. @item
  154. List output devices:
  155. @example
  156. ffmpeg -sinks decklink
  157. @end example
  158. @item
  159. List supported formats:
  160. @example
  161. ffmpeg -i test.avi -f decklink -list_formats 1 'DeckLink Mini Monitor'
  162. @end example
  163. @item
  164. Play video clip:
  165. @example
  166. ffmpeg -i test.avi -f decklink -pix_fmt uyvy422 'DeckLink Mini Monitor'
  167. @end example
  168. @item
  169. Play video clip with non-standard framerate or video size:
  170. @example
  171. ffmpeg -i test.avi -f decklink -pix_fmt uyvy422 -s 720x486 -r 24000/1001 'DeckLink Mini Monitor'
  172. @end example
  173. @end itemize
  174. @section fbdev
  175. Linux framebuffer output device.
  176. The Linux framebuffer is a graphic hardware-independent abstraction
  177. layer to show graphics on a computer monitor, typically on the
  178. console. It is accessed through a file device node, usually
  179. @file{/dev/fb0}.
  180. For more detailed information read the file
  181. @file{Documentation/fb/framebuffer.txt} included in the Linux source tree.
  182. @subsection Options
  183. @table @option
  184. @item xoffset
  185. @item yoffset
  186. Set x/y coordinate of top left corner. Default is 0.
  187. @end table
  188. @subsection Examples
  189. Play a file on framebuffer device @file{/dev/fb0}.
  190. Required pixel format depends on current framebuffer settings.
  191. @example
  192. ffmpeg -re -i INPUT -c:v rawvideo -pix_fmt bgra -f fbdev /dev/fb0
  193. @end example
  194. See also @url{http://linux-fbdev.sourceforge.net/}, and fbset(1).
  195. @section opengl
  196. OpenGL output device.
  197. To enable this output device you need to configure FFmpeg with @code{--enable-opengl}.
  198. This output device allows one to render to OpenGL context.
  199. Context may be provided by application or default SDL window is created.
  200. When device renders to external context, application must implement handlers for following messages:
  201. @code{AV_DEV_TO_APP_CREATE_WINDOW_BUFFER} - create OpenGL context on current thread.
  202. @code{AV_DEV_TO_APP_PREPARE_WINDOW_BUFFER} - make OpenGL context current.
  203. @code{AV_DEV_TO_APP_DISPLAY_WINDOW_BUFFER} - swap buffers.
  204. @code{AV_DEV_TO_APP_DESTROY_WINDOW_BUFFER} - destroy OpenGL context.
  205. Application is also required to inform a device about current resolution by sending @code{AV_APP_TO_DEV_WINDOW_SIZE} message.
  206. @subsection Options
  207. @table @option
  208. @item background
  209. Set background color. Black is a default.
  210. @item no_window
  211. Disables default SDL window when set to non-zero value.
  212. Application must provide OpenGL context and both @code{window_size_cb} and @code{window_swap_buffers_cb} callbacks when set.
  213. @item window_title
  214. Set the SDL window title, if not specified default to the filename specified for the output device.
  215. Ignored when @option{no_window} is set.
  216. @item window_size
  217. Set preferred window size, can be a string of the form widthxheight or a video size abbreviation.
  218. If not specified it defaults to the size of the input video, downscaled according to the aspect ratio.
  219. Mostly usable when @option{no_window} is not set.
  220. @end table
  221. @subsection Examples
  222. Play a file on SDL window using OpenGL rendering:
  223. @example
  224. ffmpeg -i INPUT -f opengl "window title"
  225. @end example
  226. @section oss
  227. OSS (Open Sound System) output device.
  228. @section pulse
  229. PulseAudio output device.
  230. To enable this output device you need to configure FFmpeg with @code{--enable-libpulse}.
  231. More information about PulseAudio can be found on @url{http://www.pulseaudio.org}
  232. @subsection Options
  233. @table @option
  234. @item server
  235. Connect to a specific PulseAudio server, specified by an IP address.
  236. Default server is used when not provided.
  237. @item name
  238. Specify the application name PulseAudio will use when showing active clients,
  239. by default it is the @code{LIBAVFORMAT_IDENT} string.
  240. @item stream_name
  241. Specify the stream name PulseAudio will use when showing active streams,
  242. by default it is set to the specified output name.
  243. @item device
  244. Specify the device to use. Default device is used when not provided.
  245. List of output devices can be obtained with command @command{pactl list sinks}.
  246. @item buffer_size
  247. @item buffer_duration
  248. Control the size and duration of the PulseAudio buffer. A small buffer
  249. gives more control, but requires more frequent updates.
  250. @option{buffer_size} specifies size in bytes while
  251. @option{buffer_duration} specifies duration in milliseconds.
  252. When both options are provided then the highest value is used
  253. (duration is recalculated to bytes using stream parameters). If they
  254. are set to 0 (which is default), the device will use the default
  255. PulseAudio duration value. By default PulseAudio set buffer duration
  256. to around 2 seconds.
  257. @item prebuf
  258. Specify pre-buffering size in bytes. The server does not start with
  259. playback before at least @option{prebuf} bytes are available in the
  260. buffer. By default this option is initialized to the same value as
  261. @option{buffer_size} or @option{buffer_duration} (whichever is bigger).
  262. @item minreq
  263. Specify minimum request size in bytes. The server does not request less
  264. than @option{minreq} bytes from the client, instead waits until the buffer
  265. is free enough to request more bytes at once. It is recommended to not set
  266. this option, which will initialize this to a value that is deemed sensible
  267. by the server.
  268. @end table
  269. @subsection Examples
  270. Play a file on default device on default server:
  271. @example
  272. ffmpeg -i INPUT -f pulse "stream name"
  273. @end example
  274. @section sdl
  275. SDL (Simple DirectMedia Layer) output device.
  276. "sdl2" can be used as alias for "sdl".
  277. This output device allows one to show a video stream in an SDL
  278. window. Only one SDL window is allowed per application, so you can
  279. have only one instance of this output device in an application.
  280. To enable this output device you need libsdl installed on your system
  281. when configuring your build.
  282. For more information about SDL, check:
  283. @url{http://www.libsdl.org/}
  284. @subsection Options
  285. @table @option
  286. @item window_title
  287. Set the SDL window title, if not specified default to the filename
  288. specified for the output device.
  289. @item icon_title
  290. Set the name of the iconified SDL window, if not specified it is set
  291. to the same value of @var{window_title}.
  292. @item window_size
  293. Set the SDL window size, can be a string of the form
  294. @var{width}x@var{height} or a video size abbreviation.
  295. If not specified it defaults to the size of the input video,
  296. downscaled according to the aspect ratio.
  297. @item window_x
  298. @item window_y
  299. Set the position of the window on the screen.
  300. @item window_fullscreen
  301. Set fullscreen mode when non-zero value is provided.
  302. Default value is zero.
  303. @item window_enable_quit
  304. Enable quit action (using window button or keyboard key)
  305. when non-zero value is provided.
  306. Default value is 1 (enable quit action)
  307. @end table
  308. @subsection Interactive commands
  309. The window created by the device can be controlled through the
  310. following interactive commands.
  311. @table @key
  312. @item q, ESC
  313. Quit the device immediately.
  314. @end table
  315. @subsection Examples
  316. The following command shows the @command{ffmpeg} output is an
  317. SDL window, forcing its size to the qcif format:
  318. @example
  319. ffmpeg -i INPUT -c:v rawvideo -pix_fmt yuv420p -window_size qcif -f sdl "SDL output"
  320. @end example
  321. @section sndio
  322. sndio audio output device.
  323. @section v4l2
  324. Video4Linux2 output device.
  325. @section xv
  326. XV (XVideo) output device.
  327. This output device allows one to show a video stream in a X Window System
  328. window.
  329. @subsection Options
  330. @table @option
  331. @item display_name
  332. Specify the hardware display name, which determines the display and
  333. communications domain to be used.
  334. The display name or DISPLAY environment variable can be a string in
  335. the format @var{hostname}[:@var{number}[.@var{screen_number}]].
  336. @var{hostname} specifies the name of the host machine on which the
  337. display is physically attached. @var{number} specifies the number of
  338. the display server on that host machine. @var{screen_number} specifies
  339. the screen to be used on that server.
  340. If unspecified, it defaults to the value of the DISPLAY environment
  341. variable.
  342. For example, @code{dual-headed:0.1} would specify screen 1 of display
  343. 0 on the machine named ``dual-headed''.
  344. Check the X11 specification for more detailed information about the
  345. display name format.
  346. @item window_id
  347. When set to non-zero value then device doesn't create new window,
  348. but uses existing one with provided @var{window_id}. By default
  349. this options is set to zero and device creates its own window.
  350. @item window_size
  351. Set the created window size, can be a string of the form
  352. @var{width}x@var{height} or a video size abbreviation. If not
  353. specified it defaults to the size of the input video.
  354. Ignored when @var{window_id} is set.
  355. @item window_x
  356. @item window_y
  357. Set the X and Y window offsets for the created window. They are both
  358. set to 0 by default. The values may be ignored by the window manager.
  359. Ignored when @var{window_id} is set.
  360. @item window_title
  361. Set the window title, if not specified default to the filename
  362. specified for the output device. Ignored when @var{window_id} is set.
  363. @end table
  364. For more information about XVideo see @url{http://www.x.org/}.
  365. @subsection Examples
  366. @itemize
  367. @item
  368. Decode, display and encode video input with @command{ffmpeg} at the
  369. same time:
  370. @example
  371. ffmpeg -i INPUT OUTPUT -f xv display
  372. @end example
  373. @item
  374. Decode and display the input video to multiple X11 windows:
  375. @example
  376. ffmpeg -i INPUT -f xv normal -vf negate -f xv negated
  377. @end example
  378. @end itemize
  379. @c man end OUTPUT DEVICES