ffmpeg / doc / fftools-common-opts.texi @ 561ca020
History | View | Annotate | Download (2.32 KB)
1 | 25e25617 | Stefano Sabatini | 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 | 92d71714 | Stefano Sabatini | 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 | commandline will set to false the boolean option with name "foo". |
||
13 | |||
14 | 8b9da8b5 | Stefano Sabatini | @section Generic options |
15 | |||
16 | These options are shared amongst the ff* tools. |
||
17 | |||
18 | @table @option |
||
19 | |||
20 | 5f6cb6eb | Stefano Sabatini | @item -L |
21 | Show license. |
||
22 | |||
23 | @item -h, -?, -help, --help |
||
24 | Show help. |
||
25 | |||
26 | @item -version |
||
27 | Show version. |
||
28 | |||
29 | @item -formats |
||
30 | Show available formats. |
||
31 | |||
32 | The fields preceding the format names have the following meanings: |
||
33 | @table @samp |
||
34 | @item D |
||
35 | Decoding available |
||
36 | @item E |
||
37 | Encoding available |
||
38 | @end table |
||
39 | |||
40 | @item -codecs |
||
41 | Show available codecs. |
||
42 | |||
43 | The fields preceding the codec names have the following meanings: |
||
44 | @table @samp |
||
45 | @item D |
||
46 | Decoding available |
||
47 | @item E |
||
48 | Encoding available |
||
49 | @item V/A/S |
||
50 | Video/audio/subtitle codec |
||
51 | @item S |
||
52 | Codec supports slices |
||
53 | @item D |
||
54 | Codec supports direct rendering |
||
55 | @item T |
||
56 | Codec can handle input truncated at random locations instead of only at frame boundaries |
||
57 | @end table |
||
58 | |||
59 | @item -bsfs |
||
60 | Show available bitstream filters. |
||
61 | |||
62 | @item -protocols |
||
63 | Show available protocols. |
||
64 | |||
65 | @item -filters |
||
66 | Show available libavfilter filters. |
||
67 | |||
68 | 3f7bb426 | Stefano Sabatini | @item -pix_fmts |
69 | Show available pixel formats. |
||
70 | |||
71 | 5f6cb6eb | Stefano Sabatini | @item -loglevel @var{loglevel} |
72 | Set the logging level used by the library. |
||
73 | @var{loglevel} is a number or a string containing one of the following values: |
||
74 | @table @samp |
||
75 | @item quiet |
||
76 | @item panic |
||
77 | @item fatal |
||
78 | @item error |
||
79 | @item warning |
||
80 | @item info |
||
81 | @item verbose |
||
82 | @item debug |
||
83 | @end table |
||
84 | |||
85 | 1e27c477 | Stefano Sabatini | By default the program logs to stderr, if coloring is supported by the |
86 | terminal, colors are used to mark errors and warnings. Log coloring |
||
87 | 3011ecde | Stefano Sabatini | can be disabled setting the environment variable |
88 | @env{FFMPEG_FORCE_NOCOLOR} or @env{NO_COLOR}, or can be forced setting |
||
89 | the environment variable @env{FFMPEG_FORCE_COLOR}. |
||
90 | c3d07c17 | Stefano Sabatini | The use of the environment variable @env{NO_COLOR} is deprecated and |
91 | will be dropped in a following FFmpeg version. |
||
92 | 1e27c477 | Stefano Sabatini | |
93 | 8b9da8b5 | Stefano Sabatini | @end table |