diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-29 09:16:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-05 11:16:46 +0200 |
commit | 96139b5e32618c4370bf5173ba0570503eda5a8c (patch) | |
tree | ac59e4228e9e6459202815f6df15c2315b400fb2 /doc | |
parent | 039267f192f335144d9251e6f05a1513dd1e8ef1 (diff) | |
download | ffmpeg-96139b5e32618c4370bf5173ba0570503eda5a8c.tar.gz |
avconv: move max_frames to options context.
Add a -frames option that uses generic stream specifiers, change
-[vad]frames into aliases to it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/avconv.texi | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/avconv.texi b/doc/avconv.texi index 0b560440e9..3ee606a16f 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -200,18 +200,21 @@ avconv -i myfile.avi -target vcd -bf 2 /tmp/vcd.mpg @end example @item -dframes @var{number} -Set the number of data frames to record. +Set the number of data frames to record. This is an alias for @code{-frames:d}. @item -slang @var{code} Set the ISO 639 language code (3 letters) of the current subtitle stream. +@item -frames[:stream_specifier] @var{framecount} +Stop writing to the stream after @var{framecount} frames. + @end table @section Video Options @table @option @item -vframes @var{number} -Set the number of video frames to record. +Set the number of video frames to record. This is an alias for @code{-frames:v}. @item -r @var{fps} Set frame rate (Hz value, fraction or abbreviation), (default = 25). @item -s @var{size} @@ -581,7 +584,7 @@ The timestamps must be specified in ascending order. @table @option @item -aframes @var{number} -Set the number of audio frames to record. +Set the number of audio frames to record. This is an alias for @code{-frames:a}. @item -ar @var{freq} Set the audio sampling frequency. For output streams it is set by default to the frequency of the corresponding input stream. For input |