diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-09 13:56:36 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-16 06:20:43 +0200 |
commit | 64db1a82d663958593f66ff7bf351d6a670e51a4 (patch) | |
tree | e209ab3b098935cfb00c135211904ea878e45a58 /doc/avconv.texi | |
parent | f4ad238c6c696f021e53eae8f255c2d1b79fefbb (diff) | |
download | ffmpeg-64db1a82d663958593f66ff7bf351d6a670e51a4.tar.gz |
lavc: add audio flag to the 'b' option, deprecate 'ab'.
Its only reason for its existence was ffmpeg's inability to properly assign
AVOptions to streams. Now this is not a problem anymore, so 'ab' should
go.
Diffstat (limited to 'doc/avconv.texi')
-rw-r--r-- | doc/avconv.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/avconv.texi b/doc/avconv.texi index d3d85e0a7c..93f353a24b 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -956,7 +956,7 @@ You can encode to several formats at the same time and define a mapping from input stream to output streams: @example -avconv -i /tmp/a.wav -map 0:a -ab 64k /tmp/a.mp2 -map 0:a -ab 128k /tmp/b.mp2 +avconv -i /tmp/a.wav -map 0:a -b 64k /tmp/a.mp2 -map 0:a -b 128k /tmp/b.mp2 @end example Converts a.wav to a.mp2 at 64 kbits and to b.mp2 at 128 kbits. '-map @@ -967,7 +967,7 @@ stream, in the order of the definition of output streams. You can transcode decrypted VOBs: @example -avconv -i snatch_1.vob -f avi -c:v mpeg4 -b 800k -g 300 -bf 2 -c:a libmp3lame -ab 128k snatch.avi +avconv -i snatch_1.vob -f avi -c:v mpeg4 -b:v 800k -g 300 -bf 2 -c:a libmp3lame -b:a 128k snatch.avi @end example This is a typical DVD ripping example; the input is a VOB file, the |