]> git.sesse.net Git - ffmpeg/blob - doc/outdevs.texi
Merge commit 'e22ffb3805f6994bd1fd7ab73e6297f36a53f915'
[ffmpeg] / doc / outdevs.texi
1 @chapter Output Devices
2 @c man begin OUTPUT DEVICES
3
4 Output devices are configured elements in FFmpeg that can write
5 multimedia data to an output device attached to your system.
6
7 When you configure your FFmpeg build, all the supported output devices
8 are enabled by default. You can list all available ones using the
9 configure option "--list-outdevs".
10
11 You can disable all the output devices using the configure option
12 "--disable-outdevs", and selectively enable an output device using the
13 option "--enable-outdev=@var{OUTDEV}", or you can disable a particular
14 input device using the option "--disable-outdev=@var{OUTDEV}".
15
16 The option "-devices" of the ff* tools will display the list of
17 enabled output devices.
18
19 A description of the currently available output devices follows.
20
21 @section alsa
22
23 ALSA (Advanced Linux Sound Architecture) output device.
24
25 @subsection Examples
26
27 @itemize
28 @item
29 Play a file on default ALSA device:
30 @example
31 ffmpeg -i INPUT -f alsa default
32 @end example
33
34 @item
35 Play a file on soundcard 1, audio device 7:
36 @example
37 ffmpeg -i INPUT -f alsa hw:1,7
38 @end example
39 @end itemize
40
41 @section caca
42
43 CACA output device.
44
45 This output device allows one to show a video stream in CACA window.
46 Only one CACA window is allowed per application, so you can
47 have only one instance of this output device in an application.
48
49 To enable this output device you need to configure FFmpeg with
50 @code{--enable-libcaca}.
51 libcaca is a graphics library that outputs text instead of pixels.
52
53 For more information about libcaca, check:
54 @url{http://caca.zoy.org/wiki/libcaca}
55
56 @subsection Options
57
58 @table @option
59
60 @item window_title
61 Set the CACA window title, if not specified default to the filename
62 specified for the output device.
63
64 @item window_size
65 Set the CACA window size, can be a string of the form
66 @var{width}x@var{height} or a video size abbreviation.
67 If not specified it defaults to the size of the input video.
68
69 @item driver
70 Set display driver.
71
72 @item algorithm
73 Set dithering algorithm. Dithering is necessary
74 because the picture being rendered has usually far more colours than
75 the available palette.
76 The accepted values are listed with @code{-list_dither algorithms}.
77
78 @item antialias
79 Set antialias method. Antialiasing smoothens the rendered
80 image and avoids the commonly seen staircase effect.
81 The accepted values are listed with @code{-list_dither antialiases}.
82
83 @item charset
84 Set which characters are going to be used when rendering text.
85 The accepted values are listed with @code{-list_dither charsets}.
86
87 @item color
88 Set color to be used when rendering text.
89 The accepted values are listed with @code{-list_dither colors}.
90
91 @item list_drivers
92 If set to @option{true}, print a list of available drivers and exit.
93
94 @item list_dither
95 List available dither options related to the argument.
96 The argument must be one of @code{algorithms}, @code{antialiases},
97 @code{charsets}, @code{colors}.
98 @end table
99
100 @subsection Examples
101
102 @itemize
103 @item
104 The following command shows the @command{ffmpeg} output is an
105 CACA window, forcing its size to 80x25:
106 @example
107 ffmpeg -i INPUT -c:v rawvideo -pix_fmt rgb24 -window_size 80x25 -f caca -
108 @end example
109
110 @item
111 Show the list of available drivers and exit:
112 @example
113 ffmpeg -i INPUT -pix_fmt rgb24 -f caca -list_drivers true -
114 @end example
115
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
123 @section decklink
124
125 The decklink output device provides playback capabilities for Blackmagic
126 DeckLink devices.
127
128 To enable this output device, you need the Blackmagic DeckLink SDK and you
129 need to configure with the appropriate @code{--extra-cflags}
130 and @code{--extra-ldflags}.
131 On Windows, you need to run the IDL files through @command{widl}.
132
133 DeckLink is very picky about the formats it supports. Pixel format is always
134 uyvy422, framerate, field order and video size must be determined for your
135 device with @command{-list_formats 1}. Audio sample rate is always 48 kHz.
136
137 @subsection Options
138
139 @table @option
140
141 @item list_devices
142 If set to @option{true}, print a list of devices and exit.
143 Defaults to @option{false}. Alternatively you can use the @code{-sinks}
144 option of ffmpeg to list the available output devices.
145
146 @item list_formats
147 If set to @option{true}, print a list of supported formats and exit.
148 Defaults to @option{false}.
149
150 @item preroll
151 Amount of time to preroll video in seconds.
152 Defaults to @option{0.5}.
153
154 @item duplex_mode
155 Sets the decklink device duplex mode. Must be @samp{unset}, @samp{half} or @samp{full}.
156 Defaults to @samp{unset}.
157
158 @item timing_offset
159 Sets the genlock timing pixel offset on the used output.
160 Defaults to @samp{unset}.
161
162 @end table
163
164 @subsection Examples
165
166 @itemize
167
168 @item
169 List output devices:
170 @example
171 ffmpeg -i test.avi -f decklink -list_devices 1 dummy
172 @end example
173
174 @item
175 List supported formats:
176 @example
177 ffmpeg -i test.avi -f decklink -list_formats 1 'DeckLink Mini Monitor'
178 @end example
179
180 @item
181 Play video clip:
182 @example
183 ffmpeg -i test.avi -f decklink -pix_fmt uyvy422 'DeckLink Mini Monitor'
184 @end example
185
186 @item
187 Play video clip with non-standard framerate or video size:
188 @example
189 ffmpeg -i test.avi -f decklink -pix_fmt uyvy422 -s 720x486 -r 24000/1001 'DeckLink Mini Monitor'
190 @end example
191
192 @end itemize
193
194 @section fbdev
195
196 Linux framebuffer output device.
197
198 The Linux framebuffer is a graphic hardware-independent abstraction
199 layer to show graphics on a computer monitor, typically on the
200 console. It is accessed through a file device node, usually
201 @file{/dev/fb0}.
202
203 For more detailed information read the file
204 @file{Documentation/fb/framebuffer.txt} included in the Linux source tree.
205
206 @subsection Options
207 @table @option
208
209 @item xoffset
210 @item yoffset
211 Set x/y coordinate of top left corner. Default is 0.
212 @end table
213
214 @subsection Examples
215 Play a file on framebuffer device @file{/dev/fb0}.
216 Required pixel format depends on current framebuffer settings.
217 @example
218 ffmpeg -re -i INPUT -c:v rawvideo -pix_fmt bgra -f fbdev /dev/fb0
219 @end example
220
221 See also @url{http://linux-fbdev.sourceforge.net/}, and fbset(1).
222
223 @section libndi_newtek
224
225 The libndi_newtek output device provides playback capabilities for using NDI (Network
226 Device Interface, standard created by NewTek).
227
228 Output filename is a NDI name.
229
230 To enable this output device, you need the NDI SDK and you
231 need to configure with the appropriate @code{--extra-cflags}
232 and @code{--extra-ldflags}.
233
234 NDI uses uyvy422 pixel format natively, but also supports bgra, bgr0, rgba and
235 rgb0.
236
237 @subsection Options
238
239 @table @option
240
241 @item reference_level
242 The audio reference level in dB. This specifies how many dB above the
243 reference level (+4dBU) is the full range of 16 bit audio.
244 Defaults to @option{0}.
245
246 @item clock_video
247 These specify whether video "clock" themselves.
248 Defaults to @option{false}.
249
250 @item clock_audio
251 These specify whether audio "clock" themselves.
252 Defaults to @option{false}.
253
254 @end table
255
256 @subsection Examples
257
258 @itemize
259
260 @item
261 Play video clip:
262 @example
263 ffmpeg -i "udp://@@239.1.1.1:10480?fifo_size=1000000&overrun_nonfatal=1" -vf "scale=720:576,fps=fps=25,setdar=dar=16/9,format=pix_fmts=uyvy422" -f libndi_newtek NEW_NDI1
264 @end example
265
266 @end itemize
267
268 @section opengl
269 OpenGL output device.
270
271 To enable this output device you need to configure FFmpeg with @code{--enable-opengl}.
272
273 This output device allows one to render to OpenGL context.
274 Context may be provided by application or default SDL window is created.
275
276 When device renders to external context, application must implement handlers for following messages:
277 @code{AV_DEV_TO_APP_CREATE_WINDOW_BUFFER} - create OpenGL context on current thread.
278 @code{AV_DEV_TO_APP_PREPARE_WINDOW_BUFFER} - make OpenGL context current.
279 @code{AV_DEV_TO_APP_DISPLAY_WINDOW_BUFFER} - swap buffers.
280 @code{AV_DEV_TO_APP_DESTROY_WINDOW_BUFFER} - destroy OpenGL context.
281 Application is also required to inform a device about current resolution by sending @code{AV_APP_TO_DEV_WINDOW_SIZE} message.
282
283 @subsection Options
284 @table @option
285
286 @item background
287 Set background color. Black is a default.
288 @item no_window
289 Disables default SDL window when set to non-zero value.
290 Application must provide OpenGL context and both @code{window_size_cb} and @code{window_swap_buffers_cb} callbacks when set.
291 @item window_title
292 Set the SDL window title, if not specified default to the filename specified for the output device.
293 Ignored when @option{no_window} is set.
294 @item window_size
295 Set preferred window size, can be a string of the form widthxheight or a video size abbreviation.
296 If not specified it defaults to the size of the input video, downscaled according to the aspect ratio.
297 Mostly usable when @option{no_window} is not set.
298
299 @end table
300
301 @subsection Examples
302 Play a file on SDL window using OpenGL rendering:
303 @example
304 ffmpeg  -i INPUT -f opengl "window title"
305 @end example
306
307 @section oss
308
309 OSS (Open Sound System) output device.
310
311 @section pulse
312
313 PulseAudio output device.
314
315 To enable this output device you need to configure FFmpeg with @code{--enable-libpulse}.
316
317 More information about PulseAudio can be found on @url{http://www.pulseaudio.org}
318
319 @subsection Options
320 @table @option
321
322 @item server
323 Connect to a specific PulseAudio server, specified by an IP address.
324 Default server is used when not provided.
325
326 @item name
327 Specify the application name PulseAudio will use when showing active clients,
328 by default it is the @code{LIBAVFORMAT_IDENT} string.
329
330 @item stream_name
331 Specify the stream name PulseAudio will use when showing active streams,
332 by default it is set to the specified output name.
333
334 @item device
335 Specify the device to use. Default device is used when not provided.
336 List of output devices can be obtained with command @command{pactl list sinks}.
337
338 @item buffer_size
339 @item buffer_duration
340 Control the size and duration of the PulseAudio buffer. A small buffer
341 gives more control, but requires more frequent updates.
342
343 @option{buffer_size} specifies size in bytes while
344 @option{buffer_duration} specifies duration in milliseconds.
345
346 When both options are provided then the highest value is used
347 (duration is recalculated to bytes using stream parameters). If they
348 are set to 0 (which is default), the device will use the default
349 PulseAudio duration value. By default PulseAudio set buffer duration
350 to around 2 seconds.
351
352 @item prebuf
353 Specify pre-buffering size in bytes. The server does not start with
354 playback before at least @option{prebuf} bytes are available in the
355 buffer. By default this option is initialized to the same value as
356 @option{buffer_size} or @option{buffer_duration} (whichever is bigger).
357
358 @item minreq
359 Specify minimum request size in bytes. The server does not request less
360 than @option{minreq} bytes from the client, instead waits until the buffer
361 is free enough to request more bytes at once. It is recommended to not set
362 this option, which will initialize this to a value that is deemed sensible
363 by the server.
364
365 @end table
366
367 @subsection Examples
368 Play a file on default device on default server:
369 @example
370 ffmpeg  -i INPUT -f pulse "stream name"
371 @end example
372
373 @section sdl
374
375 SDL (Simple DirectMedia Layer) output device.
376
377 This output device allows one to show a video stream in an SDL
378 window. Only one SDL window is allowed per application, so you can
379 have only one instance of this output device in an application.
380
381 To enable this output device you need libsdl installed on your system
382 when configuring your build.
383
384 For more information about SDL, check:
385 @url{http://www.libsdl.org/}
386
387 @subsection Options
388
389 @table @option
390
391 @item window_title
392 Set the SDL window title, if not specified default to the filename
393 specified for the output device.
394
395 @item icon_title
396 Set the name of the iconified SDL window, if not specified it is set
397 to the same value of @var{window_title}.
398
399 @item window_size
400 Set the SDL window size, can be a string of the form
401 @var{width}x@var{height} or a video size abbreviation.
402 If not specified it defaults to the size of the input video,
403 downscaled according to the aspect ratio.
404
405 @item window_x
406 @item window_y
407 Set the position of the window on the screen.
408
409 @item window_fullscreen
410 Set fullscreen mode when non-zero value is provided.
411 Default value is zero.
412
413 @item window_enable_quit
414 Enable quit action (using window button or keyboard key)
415 when non-zero value is provided.
416 Default value is 1 (enable quit action)
417 @end table
418
419 @subsection Interactive commands
420
421 The window created by the device can be controlled through the
422 following interactive commands.
423
424 @table @key
425 @item q, ESC
426 Quit the device immediately.
427 @end table
428
429 @subsection Examples
430
431 The following command shows the @command{ffmpeg} output is an
432 SDL window, forcing its size to the qcif format:
433 @example
434 ffmpeg -i INPUT -c:v rawvideo -pix_fmt yuv420p -window_size qcif -f sdl "SDL output"
435 @end example
436
437 @section sndio
438
439 sndio audio output device.
440
441 @section v4l2
442
443 Video4Linux2 output device.
444
445 @section xv
446
447 XV (XVideo) output device.
448
449 This output device allows one to show a video stream in a X Window System
450 window.
451
452 @subsection Options
453
454 @table @option
455 @item display_name
456 Specify the hardware display name, which determines the display and
457 communications domain to be used.
458
459 The display name or DISPLAY environment variable can be a string in
460 the format @var{hostname}[:@var{number}[.@var{screen_number}]].
461
462 @var{hostname} specifies the name of the host machine on which the
463 display is physically attached. @var{number} specifies the number of
464 the display server on that host machine. @var{screen_number} specifies
465 the screen to be used on that server.
466
467 If unspecified, it defaults to the value of the DISPLAY environment
468 variable.
469
470 For example, @code{dual-headed:0.1} would specify screen 1 of display
471 0 on the machine named ``dual-headed''.
472
473 Check the X11 specification for more detailed information about the
474 display name format.
475
476 @item window_id
477 When set to non-zero value then device doesn't create new window,
478 but uses existing one with provided @var{window_id}. By default
479 this options is set to zero and device creates its own window.
480
481 @item window_size
482 Set the created window size, can be a string of the form
483 @var{width}x@var{height} or a video size abbreviation. If not
484 specified it defaults to the size of the input video.
485 Ignored when @var{window_id} is set.
486
487 @item window_x
488 @item window_y
489 Set the X and Y window offsets for the created window. They are both
490 set to 0 by default. The values may be ignored by the window manager.
491 Ignored when @var{window_id} is set.
492
493 @item window_title
494 Set the window title, if not specified default to the filename
495 specified for the output device. Ignored when @var{window_id} is set.
496 @end table
497
498 For more information about XVideo see @url{http://www.x.org/}.
499
500 @subsection Examples
501
502 @itemize
503 @item
504 Decode, display and encode video input with @command{ffmpeg} at the
505 same time:
506 @example
507 ffmpeg -i INPUT OUTPUT -f xv display
508 @end example
509
510 @item
511 Decode and display the input video to multiple X11 windows:
512 @example
513 ffmpeg -i INPUT -f xv normal -vf negate -f xv negated
514 @end example
515 @end itemize
516
517 @c man end OUTPUT DEVICES