]> git.sesse.net Git - ffmpeg/blob - doc/fftools-common-opts.texi
Make all the numeric options accept in input an expression which is
[ffmpeg] / doc / fftools-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 @section Generic options
10
11 These options are shared amongst the ff* tools.
12
13 @table @option
14
15 @item -L
16 Show license.
17
18 @item -h, -?, -help, --help
19 Show help.
20
21 @item -version
22 Show version.
23
24 @item -formats
25 Show available formats.
26
27 The fields preceding the format names have the following meanings:
28 @table @samp
29 @item D
30 Decoding available
31 @item E
32 Encoding available
33 @end table
34
35 @item -codecs
36 Show available codecs.
37
38 The fields preceding the codec names have the following meanings:
39 @table @samp
40 @item D
41 Decoding available
42 @item E
43 Encoding available
44 @item V/A/S
45 Video/audio/subtitle codec
46 @item S
47 Codec supports slices
48 @item D
49 Codec supports direct rendering
50 @item T
51 Codec can handle input truncated at random locations instead of only at frame boundaries
52 @end table
53
54 @item -bsfs
55 Show available bitstream filters.
56
57 @item -protocols
58 Show available protocols.
59
60 @item -filters
61 Show available libavfilter filters.
62
63 @item -pix_fmts
64 Show available pixel formats.
65
66 @item -loglevel @var{loglevel}
67 Set the logging level used by the library.
68 @var{loglevel} is a number or a string containing one of the following values:
69 @table @samp
70 @item quiet
71 @item panic
72 @item fatal
73 @item error
74 @item warning
75 @item info
76 @item verbose
77 @item debug
78 @end table
79
80 @end table