diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-31 08:45:25 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-05 11:17:31 +0200 |
commit | d821cbe2ffb5c06073b6c841e6d19bc7ca9ae835 (patch) | |
tree | baca70a4b39915057566f1401cfa447a5575a276 /doc/avconv.texi | |
parent | f48053282280e8d72f020264b3ce894c0cd99703 (diff) | |
download | ffmpeg-d821cbe2ffb5c06073b6c841e6d19bc7ca9ae835.tar.gz |
avconv: move bitstream filters to options context.
Change syntax -- -[vas]bsf are replaced by -bsf:[stream specifier], the
argument is now a comma-separated list of bitstream filters.
Diffstat (limited to 'doc/avconv.texi')
-rw-r--r-- | doc/avconv.texi | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/doc/avconv.texi b/doc/avconv.texi index 3ee606a16f..1b9a7929d6 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -567,11 +567,6 @@ Intra_dc_precision. Force video tag/fourcc. @item -qphist Show QP histogram. -@item -vbsf @var{bitstream_filter} -Bitstream filters available are "dump_extra", "remove_extra", "noise", "h264_mp4toannexb", "imxdump", "mjpegadump", "mjpeg2jpeg". -@example -avconv -i h264.mp4 -c:v copy -vbsf h264_mp4toannexb -an out.h264 -@end example @item -force_key_frames @var{time}[,@var{time}...] Force key frames at the specified timestamps, more precisely at the first frames after each specified time. @@ -632,8 +627,6 @@ Voice Over @item ka Karaoke @end table -@item -absf @var{bitstream_filter} -Bitstream filters available are "dump_extra", "remove_extra", "noise", "mp3comp", "mp3decomp". @end table @section Subtitle options: @@ -645,11 +638,6 @@ Set the subtitle codec. This is an alias for @code{-codec:s}. Set the ISO 639 language code (3 letters) of the current subtitle stream. @item -sn Disable subtitle recording. -@item -sbsf @var{bitstream_filter} -Bitstream filters available are "mov2textsub", "text2movsub". -@example -avconv -i file.mov -an -vn -sbsf mov2textsub -c:s copy -f rawvideo sub.txt -@end example @end table @section Audio/Video grab options @@ -812,6 +800,17 @@ an output mpegts file: @example avconv -i infile -streamid 0:33 -streamid 1:36 out.ts @end example + +@item -bsf[:@var{stream_specifier}] @var{bitstream_filters} +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 +@end example +@example +avconv -i file.mov -an -vn -sbsf mov2textsub -c:s copy -f rawvideo sub.txt +@end example @end table @c man end OPTIONS |