diff options
author | Andrey Utkin <andrey.krieger.utkin@gmail.com> | 2014-05-08 23:50:35 +0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-10 00:06:32 +0200 |
commit | 8cc6e91f6950bface28590c9beee85da807d82cc (patch) | |
tree | ba327472d4858cd1b3ff2b4a0658264d80dadae5 /doc/muxers.texi | |
parent | b372f673427c7e3e65b2d6cb5557202164f9cf8d (diff) | |
download | ffmpeg-8cc6e91f6950bface28590c9beee85da807d82cc.tar.gz |
Document smoothstreaming muxer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/muxers.texi')
-rw-r--r-- | doc/muxers.texi | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi index 1fcd38d52e..bab0081724 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -953,6 +953,28 @@ ffmpeg -re -i in.mkv -codec copy -map 0 -f segment -segment_list playlist.m3u8 \ @end example @end itemize +@section smoothstreaming + +Smooth Streaming muxer generates a set of files (Manifest, chunks) suitable for serving with conventional web server. + +@table @option +@item window_size +Specify the number of fragments kept in the manifest. Default 0 (keep all). + +@item extra_window_size +Specify the number of fragments kept outside of the manifest before removing from disk. Default 5. + +@item lookahead_count +Specify the number of lookahead fragments. Default 2. + +@item min_frag_duration +Specify the minimum fragment duration (in microseconds). Default 5000000. + +@item remove_at_exit +Specify whether to remove all fragments when finished. Default 0 (do not remove). + +@end table + @section tee The tee muxer can be used to write the same data to several files or any |