diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-31 08:51:15 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-10 13:03:54 +0200 |
commit | 013887ebcd2557d7ab9bd85beafb17cd0d1b8ffc (patch) | |
tree | 390ebcaeecf5f068d6272d9595028780b9cc8166 /doc | |
parent | 0c1f5b93d9b97c4cc3684ba91a040e90bfc760d2 (diff) | |
download | ffmpeg-013887ebcd2557d7ab9bd85beafb17cd0d1b8ffc.tar.gz |
avconv: move codec tags to options context.
Add a new -tag option, make -[vas]tag an alias for -tag:[vas]
Diffstat (limited to 'doc')
-rw-r--r-- | doc/avconv.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/avconv.texi b/doc/avconv.texi index 1b9a7929d6..98fd2ca00f 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -564,7 +564,7 @@ top=1/bottom=0/auto=-1 field first @item -dc @var{precision} Intra_dc_precision. @item -vtag @var{fourcc/tag} -Force video tag/fourcc. +Force video tag/fourcc. This is an alias for @code{-tag:v}. @item -qphist Show QP histogram. @item -force_key_frames @var{time}[,@var{time}...] @@ -604,7 +604,7 @@ Set the ISO 639 language code (3 letters) of the current audio stream. @table @option @item -atag @var{fourcc/tag} -Force audio tag/fourcc. +Force audio tag/fourcc. This is an alias for @code{-tag:a}. @item -audio_service_type @var{type} Set the type of service that the audio stream contains. @table @option @@ -811,6 +811,9 @@ avconv -i h264.mp4 -c:v copy -vbsf h264_mp4toannexb -an out.h264 @example avconv -i file.mov -an -vn -sbsf mov2textsub -c:s copy -f rawvideo sub.txt @end example + +@item -tag[:@var{stream_specifier}] @var{codec_tag} +Force a tag/fourcc for matching streams. @end table @c man end OPTIONS |