You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

187 lines
6.2KB

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