diff options
author | John Van Sickle <john.vansickle@gmail.com> | 2012-02-24 13:46:48 -0500 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-24 22:04:11 +0100 |
commit | d6a77e2b97f3968b99798faeb70e873eb5910849 (patch) | |
tree | b8312fd78aab88889b2e4b316e2eeab968803fed /doc/avconv.texi | |
parent | b7165426917f91ebcad84bdff366824f03b32bfe (diff) | |
download | ffmpeg-d6a77e2b97f3968b99798faeb70e873eb5910849.tar.gz |
docs: use -bsf:[vas] instead of -[vas]bsf.
The latter syntax is now invalid.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
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 6d96a2f0d3..008b421e9e 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -799,10 +799,10 @@ Set bitstream filters for matching streams. @var{bistream_filters} is a comma-separated list of bitstream filters. Use the @code{-bsfs} option to get the list of bitstream filters. @example -avconv -i h264.mp4 -c:v copy -vbsf h264_mp4toannexb -an out.h264 +avconv -i h264.mp4 -c:v copy -bsf:v h264_mp4toannexb -an out.h264 @end example @example -avconv -i file.mov -an -vn -sbsf mov2textsub -c:s copy -f rawvideo sub.txt +avconv -i file.mov -an -vn -bsf:s mov2textsub -c:s copy -f rawvideo sub.txt @end example @item -tag[:@var{stream_specifier}] @var{codec_tag} (@emph{output,per-stream}) |