diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-28 01:31:38 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-28 02:07:44 +0200 |
commit | 23c1db9b83b5928a312b8d7cd753d04d49c252b6 (patch) | |
tree | 2bd8a38bed63003a8ed606a8c1b85c9a8f208548 /doc | |
parent | feca3ba053499e0d38f48910cef9bc431036956f (diff) | |
parent | d3c1d37a9019ed32a1710d53c1ad08c44bd072da (diff) | |
download | ffmpeg-23c1db9b83b5928a312b8d7cd753d04d49c252b6.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
avconv: use different variables for decoded and filtered frame.
avconv: add support for copying attachments.
matroskaenc: write attachments.
matroskadec: export mimetype of attachments as metadata.
avconv: factorize common code from new_*_stream()
doc/avconv: expand documentation for some options.
doc/avconv: document -timelimit.
Conflicts:
avconv.c
cmdutils.c
tests/codec-regression.sh
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/avconv.texi | 24 | ||||
-rw-r--r-- | doc/avtools-common-opts.texi | 7 |
2 files changed, 18 insertions, 13 deletions
diff --git a/doc/avconv.texi b/doc/avconv.texi index f8f251b631..c2040967a9 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -82,13 +82,15 @@ described. @table @option @item -f @var{fmt} (@emph{input/output}) -Force format. +Force input or output file format. The format is normally autodetected for input +files and guessed from file extension for output files, so this option is not +needed in most cases. @item -i @var{filename} (@emph{input}) input file name @item -y (@emph{global}) -Overwrite output files. +Overwrite output files without asking. @item -c[:@var{stream_specifier}] @var{codec} (@emph{input/output,per-stream}) @itemx -codec[:@var{stream_specifier}] @var{codec} (@emph{input/output,per-stream}) @@ -111,9 +113,8 @@ will copy all the streams except the second video, which will be encoded with libx264, and the 138th audio, which will be encoded with libvorbis. @item -t @var{duration} (@emph{output}) -Restrict the transcoded/captured video sequence -to the duration specified in seconds. -@code{hh:mm:ss[.xxx]} syntax is also supported. +Stop writing the output after its duration reaches @var{duration}. +@var{duration} may be a number in seconds, or in @code{hh:mm:ss[.xxx]} form. @item -fs @var{limit_size} (@emph{output}) Set the file size limit. @@ -131,7 +132,7 @@ Set the input time offset in seconds. @code{[-]hh:mm:ss[.xxx]} syntax is also supported. The offset is added to the timestamps of the input files. Specifying a positive offset means that the corresponding -streams are delayed by 'offset' seconds. +streams are delayed by @var{offset} seconds. @item -metadata[:metadata_specifier] @var{key}=@var{value} (@emph{output,per-metadata}) Set a metadata key/value pair. @@ -158,9 +159,10 @@ This option is deprecated and has no effect, use -loglevel to set verbosity level. @item -target @var{type} (@emph{output}) -Specify target file type ("vcd", "svcd", "dvd", "dv", "dv50", "pal-vcd", -"ntsc-svcd", ... ). All the format options (bitrate, codecs, -buffer sizes) are then set automatically. You can just type: +Specify target file type (@code{vcd}, @code{svcd}, @code{dvd}, @code{dv}, +@code{dv50}). @var{type} may be prefixed with @code{pal-}, @code{ntsc-} or +@code{film-} to use the corresponding standard. All the format options +(bitrate, codecs, buffer sizes) are then set automatically. You can just type: @example avconv -i myfile.avi -target vcd /tmp/vcd.mpg @@ -647,8 +649,10 @@ Show benchmarking information at the end of an encode. Shows CPU time used and maximum memory consumption. Maximum memory consumption is not supported on all systems, it will usually display as 0 if not supported. +@item -timelimit @var{duration} (@emph{global}) +Exit after avconv has been running for @var{duration} seconds. @item -dump (@emph{global}) -Dump each input packet. +Dump each input packet to stderr. @item -hex (@emph{global}) When dumping packets, also dump the payload. @item -ps @var{size} diff --git a/doc/avtools-common-opts.texi b/doc/avtools-common-opts.texi index 82d774c0de..e351cc6984 100644 --- a/doc/avtools-common-opts.texi +++ b/doc/avtools-common-opts.texi @@ -33,9 +33,10 @@ Possible forms of stream specifiers are: Matches the stream with this index. E.g. @code{-threads:1 4} would set the thread count for the second stream to 4. @item @var{stream_type}[:@var{stream_index}] -@var{stream_type} is one of: 'v' for video, 'a' for audio, 's' for subtitle and -'d' for data. If @var{stream_index} is given, then matches stream number -@var{stream_index} of this type. Otherwise matches all streams of this type. +@var{stream_type} is one of: 'v' for video, 'a' for audio, 's' for subtitle, +'d' for data and 't' for attachments. If @var{stream_index} is given, then +matches stream number @var{stream_index} of this type. Otherwise matches all +streams of this type. @item @var{program_id}[:@var{stream_index}] If @var{stream_index} is given, then matches stream number @var{stream_index} in program with id @var{program_id}. Otherwise matches all streams in this program. |