diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-03-24 16:11:46 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-03-28 23:39:44 +0200 |
commit | 99bb88c588ea9a46a06b966b9014394385ebe1c3 (patch) | |
tree | 6ec03f0a320b15d35303ba55ee6eb8757669ebbb /doc/ffmpeg.texi | |
parent | 247fbf071bb9d30f5341844a3d4ebbd53a986968 (diff) | |
download | ffmpeg-99bb88c588ea9a46a06b966b9014394385ebe1c3.tar.gz |
doc/ffmpeg: update and extend documentation for -copytb
Address trac ticket #1120.
Diffstat (limited to 'doc/ffmpeg.texi')
-rw-r--r-- | doc/ffmpeg.texi | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 402a4ae3fb..37c941e67c 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -765,8 +765,30 @@ the parameter is the maximum samples per second by which the audio is changed. without any later correction. @item -copyts Copy timestamps from input to output. -@item -copytb -Copy input stream time base from input to output when stream copying. +@item -copytb @var{mode} +Specify how to set the encoder timebase when stream copying. @var{mode} is an +integer numeric value, and can assume one of the following values: + +@table @option +@item 1 +Use the demuxer timebase. + +The time base is copied to the output encoder from the corresponding input +demuxer. This is sometimes required to avoid non monotonically increasing +timestamps when copying video streams with variable frame rate. + +@item 0 +Use the decoder timebase. + +The time base is copied to the output encoder from the corresponding input +decoder. + +@item -1 +Try to make the choice automatically, in order to generate a sane output. +@end table + +Default value is -1. + @item -shortest Finish encoding when the shortest input stream ends. @item -dts_delta_threshold |