diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-11-29 13:45:50 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-12-11 00:18:23 +0100 |
commit | 8e9056559e11cd708c68bf8a50ab1c13395ae9b0 (patch) | |
tree | ffbcb8ed5458737bf44bd9ae86f968a9dff4f79b /doc/muxers.texi | |
parent | 22e4988673df322b98c1d38782d4d8aa98d3a518 (diff) | |
download | ffmpeg-8e9056559e11cd708c68bf8a50ab1c13395ae9b0.tar.gz |
lavf/segment: add reset_timestamps option
The new options reset the timestamps at each new segment, so that the
generated segments will have timestamps starting close to 0.
It is meant to address trac ticket #1425.
Diffstat (limited to 'doc/muxers.texi')
-rw-r--r-- | doc/muxers.texi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi index 2bb987ca01..8ccd9cc8fe 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -598,8 +598,15 @@ the specified time and the time set by @var{force_key_frames}. @item segment_times @var{times} Specify a list of split points. @var{times} contains a list of comma separated duration specifications, in increasing order. + @item segment_wrap @var{limit} Wrap around segment index once it reaches @var{limit}. + +@item reset_timestamps @var{1|0} +Reset timestamps at the begin of each segment, so that each segment +will start with near-zero timestamps. It is meant to ease the playback +of the generated segments. May not work with some combinations of +muxers/codecs. It is set to @code{0} by default. @end table Some examples follow. |