diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-09-01 10:04:35 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-11 17:30:03 +0200 |
commit | 77d9c4542c129276fedefeca089c5759e5fe6353 (patch) | |
tree | 4dbb1f499d187bf5bfff8beb2c115f41a9907bc4 /doc/avconv.texi | |
parent | e2469ccf01ced9d4520dcc1fb987fc73a2045066 (diff) | |
download | ffmpeg-77d9c4542c129276fedefeca089c5759e5fe6353.tar.gz |
avconv: rewrite -qscale and -aq handling.
Merge video_qscale (set by -qscale) and audio_qscale (set by -aq) into
one 'qscale' field in the options context. Add a shortcut -q for -qscale
and make -aq an alias for -q:a.
Diffstat (limited to 'doc/avconv.texi')
-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 d9c1461674..62f21f05e4 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -205,6 +205,11 @@ Set the number of data frames to record. This is an alias for @code{-frames:d}. @item -frames[:stream_specifier] @var{framecount} Stop writing to the stream after @var{framecount} frames. +@item -q @var{q} +@item -qscale @var{q} +Use fixed quality scale (VBR). The meaning of @var{q} is +codec-dependent. + @end table @section Video Options @@ -354,8 +359,6 @@ Set SwScaler flags. Set the group of pictures size. @item -vdt @var{n} Discard threshold. -@item -qscale @var{q} -Use fixed video quantizer scale (VBR). @item -qmin @var{q} minimum video quantizer scale (VBR) @item -qmax @var{q} @@ -580,7 +583,7 @@ default to the frequency of the corresponding input stream. For input streams this option only makes sense for audio grabbing devices and raw demuxers and is mapped to the corresponding demuxer options. @item -aq @var{q} -Set the audio quality (codec-specific, VBR). +Set the audio quality (codec-specific, VBR). This is an alias for -q:a. @item -ac @var{channels} Set the number of audio channels. For output streams it is set by default to the number of input audio channels. For input streams |