]> git.sesse.net Git - ffmpeg/blob - doc/outdevs.texi
Merge commit '325aa63dd1a3abc2453914d0bc111d297833d725'
[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}.
144
145 @item list_formats
146 If set to @option{true}, print a list of supported formats and exit.
147 Defaults to @option{false}.
148
149 @item preroll
150 Amount of time to preroll video in seconds.
151 Defaults to @option{0.5}.
152
153 @item duplex_mode
154 Sets the decklink device duplex mode. Must be @samp{unset}, @samp{half} or @samp{full}.
155 Defaults to @samp{unset}.
156
157 @end table
158
159 @subsection Examples
160
161 @itemize
162
163 @item
164 List output devices:
165 @example
166 ffmpeg -i test.avi -f decklink -list_devices 1 dummy
167 @end example
168
169 @item
170 List supported formats:
171 @example
172 ffmpeg -i test.avi -f decklink -list_formats 1 'DeckLink Mini Monitor'
173 @end example
174
175 @item
176 Play video clip:
177 @example
178 ffmpeg -i test.avi -f decklink -pix_fmt uyvy422 'DeckLink Mini Monitor'
179 @end example
180
181 @item
182 Play video clip with non-standard framerate or video size:
183 @example
184 ffmpeg -i test.avi -f decklink -pix_fmt uyvy422 -s 720x486 -r 24000/1001 'DeckLink Mini Monitor'
185 @end example
186
187 @end itemize
188
189 @section fbdev
190
191 Linux framebuffer output device.
192
193 The Linux framebuffer is a graphic hardware-independent abstraction
194 layer to show graphics on a computer monitor, typically on the
195 console. It is accessed through a file device node, usually
196 @file{/dev/fb0}.
197
198 For more detailed information read the file
199 @file{Documentation/fb/framebuffer.txt} included in the Linux source tree.
200
201 @subsection Options
202 @table @option
203
204 @item xoffset
205 @item yoffset
206 Set x/y coordinate of top left corner. Default is 0.
207 @end table
208
209 @subsection Examples
210 Play a file on framebuffer device @file{/dev/fb0}.
211 Required pixel format depends on current framebuffer settings.
212 @example
213 ffmpeg -re -i INPUT -c:v rawvideo -pix_fmt bgra -f fbdev /dev/fb0
214 @end example
215
216 See also @url{http://linux-fbdev.sourceforge.net/}, and fbset(1).
217
218 @section libndi_newtek
219
220 The libndi_newtek output device provides playback capabilities for using NDI (Network
221 Device Interface, standard created by NewTek).
222
223 Output filename is a NDI name.
224
225 To enable this output device, you need the NDI SDK and you
226 need to configure with the appropriate @code{--extra-cflags}
227 and @code{--extra-ldflags}.
228
229 NDI uses uyvy422 pixel format natively, but also supports bgra, bgr0, rgba and
230 rgb0.
231
232 @subsection Options
233
234 @table @option
235
236 @item reference_level
237 The audio reference level in dB. This specifies how many dB above the
238 reference level (+4dBU) is the full range of 16 bit audio.
239 Defaults to @option{0}.
240
241 @item clock_video
242 These specify whether video "clock" themselves.
243 Defaults to @option{false}.
244
245 @item clock_audio
246 These specify whether audio "clock" themselves.
247 Defaults to @option{false}.
248
249 @end table
250
251 @subsection Examples
252
253 @itemize
254
255 @item
256 Play video clip:
257 @example
258 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
259 @end example
260
261 @end itemize
262
263 @section opengl
264 OpenGL output device.
265
266 To enable this output device you need to configure FFmpeg with @code{--enable-opengl}.
267
268 This output device allows one to render to OpenGL context.
269 Context may be provided by application or default SDL window is created.
270
271 When device renders to external context, application must implement handlers for following messages:
272 @code{AV_DEV_TO_APP_CREATE_WINDOW_BUFFER} - create OpenGL context on current thread.
273 @code{AV_DEV_TO_APP_PREPARE_WINDOW_BUFFER} - make OpenGL context current.
274 @code{AV_DEV_TO_APP_DISPLAY_WINDOW_BUFFER} - swap buffers.
275 @code{AV_DEV_TO_APP_DESTROY_WINDOW_BUFFER} - destroy OpenGL context.
276 Application is also required to inform a device about current resolution by sending @code{AV_APP_TO_DEV_WINDOW_SIZE} message.
277
278 @subsection Options
279 @table @option
280
281 @item background
282 Set background color. Black is a default.
283 @item no_window
284 Disables default SDL window when set to non-zero value.
285 Application must provide OpenGL context and both @code{window_size_cb} and @code{window_swap_buffers_cb} callbacks when set.
286 @item window_title
287 Set the SDL window title, if not specified default to the filename specified for the output device.
288 Ignored when @option{no_window} is set.
289 @item window_size
290 Set preferred window size, can be a string of the form widthxheight or a video size abbreviation.
291 If not specified it defaults to the size of the input video, downscaled according to the aspect ratio.
292 Mostly usable when @option{no_window} is not set.
293
294 @end table
295
296 @subsection Examples
297 Play a file on SDL window using OpenGL rendering:
298 @example
299 ffmpeg  -i INPUT -f opengl "window title"
300 @end example
301
302 @section oss
303
304 OSS (Open Sound System) output device.
305
306 @section pulse
307
308 PulseAudio output device.
309
310 To enable this output device you need to configure FFmpeg with @code{--enable-libpulse}.
311
312 More information about PulseAudio can be found on @url{http://www.pulseaudio.org}
313
314 @subsection Options
315 @table @option
316
317 @item server
318 Connect to a specific PulseAudio server, specified by an IP address.
319 Default server is used when not provided.
320
321 @item name
322 Specify the application name PulseAudio will use when showing active clients,
323 by default it is the @code{LIBAVFORMAT_IDENT} string.
324
325 @item stream_name
326 Specify the stream name PulseAudio will use when showing active streams,
327 by default it is set to the specified output name.
328
329 @item device
330 Specify the device to use. Default device is used when not provided.
331 List of output devices can be obtained with command @command{pactl list sinks}.
332
333 @item buffer_size
334 @item buffer_duration
335 Control the size and duration of the PulseAudio buffer. A small buffer
336 gives more control, but requires more frequent updates.
337
338 @option{buffer_size} specifies size in bytes while
339 @option{buffer_duration} specifies duration in milliseconds.
340
341 When both options are provided then the highest value is used
342 (duration is recalculated to bytes using stream parameters). If they
343 are set to 0 (which is default), the device will use the default
344 PulseAudio duration value. By default PulseAudio set buffer duration
345 to around 2 seconds.
346
347 @item prebuf
348 Specify pre-buffering size in bytes. The server does not start with
349 playback before at least @option{prebuf} bytes are available in the
350 buffer. By default this option is initialized to the same value as
351 @option{buffer_size} or @option{buffer_duration} (whichever is bigger).
352
353 @item minreq
354 Specify minimum request size in bytes. The server does not request less
355 than @option{minreq} bytes from the client, instead waits until the buffer
356 is free enough to request more bytes at once. It is recommended to not set
357 this option, which will initialize this to a value that is deemed sensible
358 by the server.
359
360 @end table
361
362 @subsection Examples
363 Play a file on default device on default server:
364 @example
365 ffmpeg  -i INPUT -f pulse "stream name"
366 @end example
367
368 @section sdl
369
370 SDL (Simple DirectMedia Layer) output device.
371
372 This output device allows one to show a video stream in an SDL
373 window. Only one SDL window is allowed per application, so you can
374 have only one instance of this output device in an application.
375
376 To enable this output device you need libsdl installed on your system
377 when configuring your build.
378
379 For more information about SDL, check:
380 @url{http://www.libsdl.org/}
381
382 @subsection Options
383
384 @table @option
385
386 @item window_title
387 Set the SDL window title, if not specified default to the filename
388 specified for the output device.
389
390 @item icon_title
391 Set the name of the iconified SDL window, if not specified it is set
392 to the same value of @var{window_title}.
393
394 @item window_size
395 Set the SDL window size, can be a string of the form
396 @var{width}x@var{height} or a video size abbreviation.
397 If not specified it defaults to the size of the input video,
398 downscaled according to the aspect ratio.
399
400 @item window_fullscreen
401 Set fullscreen mode when non-zero value is provided.
402 Default value is zero.
403
404 @item window_enable_quit
405 Enable quit action (using window button or keyboard key)
406 when non-zero value is provided.
407 Default value is 1 (enable quit action)
408 @end table
409
410 @subsection Interactive commands
411
412 The window created by the device can be controlled through the
413 following interactive commands.
414
415 @table @key
416 @item q, ESC
417 Quit the device immediately.
418 @end table
419
420 @subsection Examples
421
422 The following command shows the @command{ffmpeg} output is an
423 SDL window, forcing its size to the qcif format:
424 @example
425 ffmpeg -i INPUT -c:v rawvideo -pix_fmt yuv420p -window_size qcif -f sdl "SDL output"
426 @end example
427
428 @section sndio
429
430 sndio audio output device.
431
432 @section v4l2
433
434 Video4Linux2 output device.
435
436 @section xv
437
438 XV (XVideo) output device.
439
440 This output device allows one to show a video stream in a X Window System
441 window.
442
443 @subsection Options
444
445 @table @option
446 @item display_name
447 Specify the hardware display name, which determines the display and
448 communications domain to be used.
449
450 The display name or DISPLAY environment variable can be a string in
451 the format @var{hostname}[:@var{number}[.@var{screen_number}]].
452
453 @var{hostname} specifies the name of the host machine on which the
454 display is physically attached. @var{number} specifies the number of
455 the display server on that host machine. @var{screen_number} specifies
456 the screen to be used on that server.
457
458 If unspecified, it defaults to the value of the DISPLAY environment
459 variable.
460
461 For example, @code{dual-headed:0.1} would specify screen 1 of display
462 0 on the machine named ``dual-headed''.
463
464 Check the X11 specification for more detailed information about the
465 display name format.
466
467 @item window_id
468 When set to non-zero value then device doesn't create new window,
469 but uses existing one with provided @var{window_id}. By default
470 this options is set to zero and device creates its own window.
471
472 @item window_size
473 Set the created window size, can be a string of the form
474 @var{width}x@var{height} or a video size abbreviation. If not
475 specified it defaults to the size of the input video.
476 Ignored when @var{window_id} is set.
477
478 @item window_x
479 @item window_y
480 Set the X and Y window offsets for the created window. They are both
481 set to 0 by default. The values may be ignored by the window manager.
482 Ignored when @var{window_id} is set.
483
484 @item window_title
485 Set the window title, if not specified default to the filename
486 specified for the output device. Ignored when @var{window_id} is set.
487 @end table
488
489 For more information about XVideo see @url{http://www.x.org/}.
490
491 @subsection Examples
492
493 @itemize
494 @item
495 Decode, display and encode video input with @command{ffmpeg} at the
496 same time:
497 @example
498 ffmpeg -i INPUT OUTPUT -f xv display
499 @end example
500
501 @item
502 Decode and display the input video to multiple X11 windows:
503 @example
504 ffmpeg -i INPUT -f xv normal -vf negate -f xv negated
505 @end example
506 @end itemize
507
508 @c man end OUTPUT DEVICES