Browse code

Add muxers.texi file.

Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>

Stefano Sabatini authored on 2011/01/27 07:55:53
Showing 4 changed files
... ...
@@ -977,6 +977,7 @@ file to which you want to add them.
977 977
 
978 978
 @include eval.texi
979 979
 @include demuxers.texi
980
+@include muxers.texi
980 981
 @include indevs.texi
981 982
 @include outdevs.texi
982 983
 @include protocols.texi
... ...
@@ -155,6 +155,7 @@ Seek to percentage in file corresponding to fraction of width.
155 155
 
156 156
 @include eval.texi
157 157
 @include demuxers.texi
158
+@include muxers.texi
158 159
 @include indevs.texi
159 160
 @include outdevs.texi
160 161
 @include protocols.texi
... ...
@@ -110,6 +110,7 @@ with name "STREAM".
110 110
 @c man end
111 111
 
112 112
 @include demuxers.texi
113
+@include muxers.texi
113 114
 @include protocols.texi
114 115
 @include indevs.texi
115 116
 
116 117
new file mode 100644
... ...
@@ -0,0 +1,21 @@
0
+@chapter Muxers
1
+@c man begin MUXERS
2
+
3
+Muxers are configured elements in FFmpeg which allow writing
4
+multimedia streams to a particular type of file.
5
+
6
+When you configure your FFmpeg build, all the supported muxers
7
+are enabled by default. You can list all available muxers using the
8
+configure option @code{--list-muxers}.
9
+
10
+You can disable all the muxers with the configure option
11
+@code{--disable-muxers} and selectively enable / disable single muxers
12
+with the options @code{--enable-muxer=@var{MUXER}} /
13
+@code{--disable-muxer=@var{MUXER}}.
14
+
15
+The option @code{-formats} of the ff* tools will display the list of
16
+enabled muxers.
17
+
18
+A description of some of the currently available muxers follows.
19
+
20
+@c man end MUXERS