Merge remote-tracking branch 'libav/master'
[FFMpeg-mirror/mplayer-patches.git] / doc / avtools-common-opts.texi
blobafd2cc387669219640543dfecfe8372f00d3198a
1 All the numerical options, if not specified otherwise, accept in input
2 a string representing a number, which may contain one of the
3 SI unit prefixes, for example 'K', 'M', 'G'.
4 If 'i' is appended after the prefix, binary prefixes are used,
5 which are based on powers of 1024 instead of powers of 1000.
6 The 'B' postfix multiplies the value by 8, and can be
7 appended after a unit prefix or used alone. This allows using for
8 example 'KB', 'MiB', 'G' and 'B' as number postfix.
10 Options which do not take arguments are boolean options, and set the
11 corresponding value to true. They can be set to false by prefixing
12 with "no" the option name, for example using "-nofoo" in the
13 command line will set to false the boolean option with name "foo".
15 @anchor{Stream specifiers}
16 @section Stream specifiers
17 Some options are applied per-stream, e.g. bitrate or codec. Stream specifiers
18 are used to precisely specify which stream(s) does a given option belong to.
20 A stream specifier is a string generally appended to the option name and
21 separated from it by a colon. E.g. @code{-codec:a:1 ac3} option contains
22 @code{a:1} stream specifer, which matches the second audio stream. Therefore it
23 would select the ac3 codec for the second audio stream.
25 A stream specifier can match several stream, the option is then applied to all
26 of them. E.g. the stream specifier in @code{-b:a 128k} matches all audio
27 streams.
29 An empty stream specifier matches all streams, for example @code{-codec copy}
30 or @code{-codec: copy} would copy all the streams without reencoding.
32 Possible forms of stream specifiers are:
33 @table @option
34 @item @var{stream_index}
35 Matches the stream with this index. E.g. @code{-threads:1 4} would set the
36 thread count for the second stream to 4.
37 @item @var{stream_type}[:@var{stream_index}]
38 @var{stream_type} is one of: 'v' for video, 'a' for audio, 's' for subtitle,
39 'd' for data and 't' for attachments. If @var{stream_index} is given, then
40 matches stream number @var{stream_index} of this type. Otherwise matches all
41 streams of this type.
42 @item p:@var{program_id}[:@var{stream_index}]
43 If @var{stream_index} is given, then matches stream number @var{stream_index} in
44 program with id @var{program_id}. Otherwise matches all streams in this program.
45 @end table
46 @section Generic options
48 These options are shared amongst the av* tools.
50 @table @option
52 @item -L
53 Show license.
55 @item -h, -?, -help, --help [@var{arg}]
56 Show help. An optional parameter may be specified to print help about a specific
57 item.
59 Possible values of @var{arg} are:
60 @table @option
61 @item decoder=@var{decoder_name}
62 Print detailed information about the decoder named @var{decoder_name}. Use the
63 @option{-decoders} option to get a list of all decoders.
65 @item encoder=@var{encoder_name}
66 Print detailed information about the encoder named @var{encoder_name}. Use the
67 @option{-encoders} option to get a list of all encoders.
69 @item demuxer=@var{demuxer_name}
70 Print detailed information about the demuxer named @var{demuxer_name}. Use the
71 @option{-formats} option to get a list of all demuxers and muxers.
73 @item muxer=@var{muxer_name}
74 Print detailed information about the muxer named @var{muxer_name}. Use the
75 @option{-formats} option to get a list of all muxers and demuxers.
77 @end table
79 @item -version
80 Show version.
82 @item -formats
83 Show available formats.
85 The fields preceding the format names have the following meanings:
86 @table @samp
87 @item D
88 Decoding available
89 @item E
90 Encoding available
91 @end table
93 @item -codecs
94 Show all codecs known to libavcodec.
96 Note that the term 'codec' is used throughout this documentation as a shortcut
97 for what is more correctly called a media bitstream format.
99 @item -decoders
100 Show available decoders.
102 @item -encoders
103 Show all available encoders.
105 @item -bsfs
106 Show available bitstream filters.
108 @item -protocols
109 Show available protocols.
111 @item -filters
112 Show available libavfilter filters.
114 @item -pix_fmts
115 Show available pixel formats.
117 @item -sample_fmts
118 Show available sample formats.
120 @item -loglevel @var{loglevel} | -v @var{loglevel}
121 Set the logging level used by the library.
122 @var{loglevel} is a number or a string containing one of the following values:
123 @table @samp
124 @item quiet
125 @item panic
126 @item fatal
127 @item error
128 @item warning
129 @item info
130 @item verbose
131 @item debug
132 @end table
134 By default the program logs to stderr, if coloring is supported by the
135 terminal, colors are used to mark errors and warnings. Log coloring
136 can be disabled setting the environment variable
137 @env{AV_LOG_FORCE_NOCOLOR} or @env{NO_COLOR}, or can be forced setting
138 the environment variable @env{AV_LOG_FORCE_COLOR}.
139 The use of the environment variable @env{NO_COLOR} is deprecated and
140 will be dropped in a following Libav version.
142 @end table
144 @section AVOptions
146 These options are provided directly by the libavformat, libavdevice and
147 libavcodec libraries. To see the list of available AVOptions, use the
148 @option{-help} option. They are separated into two categories:
149 @table @option
150 @item generic
151 These options can be set for any container, codec or device. Generic options
152 are listed under AVFormatContext options for containers/devices and under
153 AVCodecContext options for codecs.
154 @item private
155 These options are specific to the given container, device or codec. Private
156 options are listed under their corresponding containers/devices/codecs.
157 @end table
159 For example to write an ID3v2.3 header instead of a default ID3v2.4 to
160 an MP3 file, use the @option{id3v2_version} private option of the MP3
161 muxer:
162 @example
163 avconv -i input.flac -id3v2_version 3 out.mp3
164 @end example
166 All codec AVOptions are obviously per-stream, so the chapter on stream
167 specifiers applies to them
169 Note @option{-nooption} syntax cannot be used for boolean AVOptions,
170 use @option{-option 0}/@option{-option 1}.
172 Note2 old undocumented way of specifying per-stream AVOptions by prepending
173 v/a/s to the options name is now obsolete and will be removed soon.
175 @include avoptions_codec.texi
176 @include avoptions_format.texi