diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-26 23:55:53 +0100 |
---|---|---|
committer | Janne Grunau <janne-ffmpeg@jannau.net> | 2011-01-28 17:46:55 +0100 |
commit | 85466e1e5f7f1fe50933d2d967a06b45b9222b5b (patch) | |
tree | cbdd055583c9d6ed3270d63a450d6bbd3edc5cf6 /doc/muxers.texi | |
parent | a7827a17c6b3388322350456d445c94b3a82cd25 (diff) | |
download | ffmpeg-85466e1e5f7f1fe50933d2d967a06b45b9222b5b.tar.gz |
Add muxers.texi file.
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
Diffstat (limited to 'doc/muxers.texi')
-rw-r--r-- | doc/muxers.texi | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi new file mode 100644 index 0000000000..c3dcf1171c --- /dev/null +++ b/doc/muxers.texi @@ -0,0 +1,21 @@ +@chapter Muxers +@c man begin MUXERS + +Muxers are configured elements in FFmpeg which allow writing +multimedia streams to a particular type of file. + +When you configure your FFmpeg build, all the supported muxers +are enabled by default. You can list all available muxers using the +configure option @code{--list-muxers}. + +You can disable all the muxers with the configure option +@code{--disable-muxers} and selectively enable / disable single muxers +with the options @code{--enable-muxer=@var{MUXER}} / +@code{--disable-muxer=@var{MUXER}}. + +The option @code{-formats} of the ff* tools will display the list of +enabled muxers. + +A description of some of the currently available muxers follows. + +@c man end MUXERS |