diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-11-02 21:50:54 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-11-03 07:29:29 +0100 |
commit | a2c0b830d5690c4a4250702ff2f1b044ebf9594e (patch) | |
tree | 65bf704b7c0ac4bf4013223854c08071747dc05a /doc/avconv.texi | |
parent | 4dbc6ceef5eafbafbe64a12083d70599895299c2 (diff) | |
download | ffmpeg-a2c0b830d5690c4a4250702ff2f1b044ebf9594e.tar.gz |
avconv: add -dump_attachment option.
Diffstat (limited to 'doc/avconv.texi')
-rw-r--r-- | doc/avconv.texi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/avconv.texi b/doc/avconv.texi index e14ab857f4..1075cc7c56 100644 --- a/doc/avconv.texi +++ b/doc/avconv.texi @@ -207,6 +207,24 @@ avconv -i INPUT -attach DejaVuSans.ttf -metadata:s:2 mimetype=application/x-true @end example (assuming that the attachment stream will be third in the output file). +@item -dump_attachment[:@var{stream_specifier}] @var{filename} (@emph{input,per-stream}) +Extract the matching attachment stream into a file named @var{filename}. If +@var{filename} is empty, then the value of the @code{filename} metadata tag +will be used. + +E.g. to extract the first attachment to a file named 'out.ttf': +@example +avconv -dump_attachment:t:0 out.ttf INPUT +@end example +To extract all attachments to files determined by the @code{filename} tag: +@example +avconv -dump_attachment:t "" INPUT +@end example + +Technical note -- attachments are implemented as codec extradata, so this +option can actually be used to extract extradata from any stream, not just +attachments. + @end table @section Video Options |