diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-01-02 12:56:12 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-01-02 16:30:11 +0100 |
commit | 82deb0c42e5b35fcca560e3a6fe2ad6fff6ca0be (patch) | |
tree | 80f927ffbcfded68afcca641a6ff4da0a98d9bcd | |
parent | 8bbe9d90fa47c5ce39f75f0d0fab9ba0b248d743 (diff) | |
download | ffmpeg-82deb0c42e5b35fcca560e3a6fe2ad6fff6ca0be.tar.gz |
doc/muxers: adopt new -codec:SPEC syntax in segment example
-rw-r--r-- | doc/muxers.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi index 3a7422e484..fb642847e1 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -653,7 +653,7 @@ option to force key frames in the input at the specified location, together with the segment option @var{segment_time_delta} to account for possible roundings operated when setting key frame times. @example -ffmpeg -i in.mkv -force_key_frames 1,2,3,5,8,13,21 -vcodec mpeg4 -acodec pcm_s16le -map 0 \ +ffmpeg -i in.mkv -force_key_frames 1,2,3,5,8,13,21 -codec:v mpeg4 -codec:a pcm_s16le -map 0 \ -f segment -segment_list out.csv -segment_times 1,2,3,5,8,13,21 -segment_time_delta 0.05 out%03d.nut @end example In order to force key frames on the input file, transcoding is |