outdevs.texi 4.42 KB
Newer Older
1 2 3
@chapter Output Devices
@c man begin OUTPUT DEVICES

4
Output devices are configured elements in FFmpeg which allow to write
5 6
multimedia data to an output device attached to your system.

7
When you configure your FFmpeg build, all the supported output devices
8 9
are enabled by default. You can list all available ones using the
configure option "--list-outdevs".
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

You can disable all the output devices using the configure option
"--disable-outdevs", and selectively enable an output device using the
option "--enable-outdev=@var{OUTDEV}", or you can disable a particular
input device using the option "--disable-outdev=@var{OUTDEV}".

The option "-formats" of the ff* tools will display the list of
enabled output devices (amongst the muxers).

A description of the currently available output devices follows.

@section alsa

ALSA (Advanced Linux Sound Architecture) output device.

Paul B Mahol's avatar
Paul B Mahol committed
25 26 27 28 29 30 31 32 33
@section caca

CACA output device.

This output devices allows to show a video stream in CACA window.
Only one CACA window is allowed per application, so you can
have only one instance of this output device in an application.

To enable this output device you need to configure FFmpeg with
34
@code{--enable-libcaca}.
Paul B Mahol's avatar
Paul B Mahol committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
libcaca is a graphics library that outputs text instead of pixels.

For more information about libcaca, check:
@url{http://caca.zoy.org/wiki/libcaca}

@subsection Options

@table @option

@item window_title
Set the CACA window title, if not specified default to the filename
specified for the output device.

@item window_size
Set the CACA window size, can be a string of the form
@var{width}x@var{height} or a video size abbreviation.
If not specified it defaults to the size of the input video.

@item driver
Set display driver.

@item algorithm
Set dithering algorithm. Dithering is necessary
because the picture being rendered has usually far more colours than
the available palette.
60
The accepted values are listed with @code{-list_dither algorithms}.
Paul B Mahol's avatar
Paul B Mahol committed
61 62 63 64

@item antialias
Set antialias method. Antialiasing smoothens the rendered
image and avoids the commonly seen staircase effect.
65
The accepted values are listed with @code{-list_dither antialiases}.
Paul B Mahol's avatar
Paul B Mahol committed
66 67 68

@item charset
Set which characters are going to be used when rendering text.
69
The accepted values are listed with @code{-list_dither charsets}.
Paul B Mahol's avatar
Paul B Mahol committed
70

71 72
@item color
Set color to be used when rendering text.
73
The accepted values are listed with @code{-list_dither colors}.
Paul B Mahol's avatar
Paul B Mahol committed
74 75

@item list_drivers
76
If set to @option{true}, print a list of available drivers and exit.
Paul B Mahol's avatar
Paul B Mahol committed
77 78

@item list_dither
79 80 81
List available dither options related to the argument.
The argument must be one of @code{algorithms}, @code{antialiases},
@code{charsets}, @code{colors}.
Paul B Mahol's avatar
Paul B Mahol committed
82 83 84 85
@end table

@subsection Examples

86 87
@itemize
@item
Paul B Mahol's avatar
Paul B Mahol committed
88 89 90 91 92 93
The following command shows the @command{ffmpeg} output is an
CACA window, forcing its size to 80x25:
@example
ffmpeg -i INPUT -vcodec rawvideo -pix_fmt rgb24 -window_size 80x25 -f caca -
@end example

94 95 96 97 98 99 100 101 102 103 104 105 106
@item
Show the list of available drivers and exit:
@example
ffmpeg -i INPUT -pix_fmt rgb24 -f caca -list_drivers true -
@end example

@item
Show the list of available dither colors and exit:
@example
ffmpeg -i INPUT -pix_fmt rgb24 -f caca -list_dither colors -
@end example
@end itemize

107 108 109 110
@section oss

OSS (Open Sound System) output device.

111 112
@section sdl

113
SDL (Simple DirectMedia Layer) output device.
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129

This output devices allows to show a video stream in an SDL
window. Only one SDL window is allowed per application, so you can
have only one instance of this output device in an application.

To enable this output device you need libsdl installed on your system
when configuring your build.

For more information about SDL, check:
@url{http://www.libsdl.org/}

@subsection Options

@table @option

@item window_title
130 131
Set the SDL window title, if not specified default to the filename
specified for the output device.
132 133 134 135 136 137 138 139

@item icon_title
Set the name of the iconified SDL window, if not specified it is set
to the same value of @var{window_title}.

@item window_size
Set the SDL window size, can be a string of the form
@var{width}x@var{height} or a video size abbreviation.
140 141
If not specified it defaults to the size of the input video,
downscaled according to the aspect ratio.
142 143 144 145
@end table

@subsection Examples

146
The following command shows the @command{ffmpeg} output is an
147 148
SDL window, forcing its size to the qcif format:
@example
149
ffmpeg -i INPUT -vcodec rawvideo -pix_fmt yuv420p -window_size qcif -f sdl "SDL output"
150 151
@end example

152 153 154 155
@section sndio

sndio audio output device.

156
@c man end OUTPUT DEVICES