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