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.

471 lines
13KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle ffprobe Documentation
  3. @titlepage
  4. @center @titlefont{ffprobe Documentation}
  5. @end titlepage
  6. @top
  7. @contents
  8. @chapter Synopsis
  9. The generic syntax is:
  10. @example
  11. @c man begin SYNOPSIS
  12. ffprobe [options] [@file{input_file}]
  13. @c man end
  14. @end example
  15. @chapter Description
  16. @c man begin DESCRIPTION
  17. ffprobe gathers information from multimedia streams and prints it in
  18. human- and machine-readable fashion.
  19. For example it can be used to check the format of the container used
  20. by a multimedia stream and the format and type of each media stream
  21. contained in it.
  22. If a filename is specified in input, ffprobe will try to open and
  23. probe the file content. If the file cannot be opened or recognized as
  24. a multimedia file, a positive exit code is returned.
  25. ffprobe may be employed both as a standalone application or in
  26. combination with a textual filter, which may perform more
  27. sophisticated processing, e.g. statistical processing or plotting.
  28. Options are used to list some of the formats supported by ffprobe or
  29. for specifying which information to display, and for setting how
  30. ffprobe will show it.
  31. ffprobe output is designed to be easily parsable by a textual filter,
  32. and consists of one or more sections of a form defined by the selected
  33. writer, which is specified by the @option{print_format} option.
  34. Metadata tags stored in the container or in the streams are recognized
  35. and printed in the corresponding "FORMAT" or "STREAM" section.
  36. @c man end
  37. @chapter Options
  38. @c man begin OPTIONS
  39. @include avtools-common-opts.texi
  40. @section Main options
  41. @table @option
  42. @item -f @var{format}
  43. Force format to use.
  44. @item -unit
  45. Show the unit of the displayed values.
  46. @item -prefix
  47. Use SI prefixes for the displayed values.
  48. Unless the "-byte_binary_prefix" option is used all the prefixes
  49. are decimal.
  50. @item -byte_binary_prefix
  51. Force the use of binary prefixes for byte values.
  52. @item -sexagesimal
  53. Use sexagesimal format HH:MM:SS.MICROSECONDS for time values.
  54. @item -pretty
  55. Prettify the format of the displayed values, it corresponds to the
  56. options "-unit -prefix -byte_binary_prefix -sexagesimal".
  57. @item -of, -print_format @var{writer_name}[=@var{writer_options}]
  58. Set the output printing format.
  59. @var{writer_name} specifies the name of the writer, and
  60. @var{writer_options} specifies the options to be passed to the writer.
  61. For example for printing the output in JSON format, specify:
  62. @example
  63. -print_format json
  64. @end example
  65. For more details on the available output printing formats, see the
  66. Writers section below.
  67. @item -select_streams @var{stream_specifier}
  68. Select only the streams specified by @var{stream_specifier}. This
  69. option affects only the options related to streams
  70. (e.g. @code{show_streams}, @code{show_packets}, etc.).
  71. For example to show only audio streams, you can use the command:
  72. @example
  73. ffprobe -show_streams -select_streams a INPUT
  74. @end example
  75. To show only video packets belonging to the video stream with index 1:
  76. @example
  77. ffprobe -show_packets -select_streams v:1 INPUT
  78. @end example
  79. @item -show_data
  80. Show payload data, as an hexadecimal and ASCII dump. Coupled with
  81. @option{-show_packets}, it will dump the packets' data. Coupled with
  82. @option{-show_streams}, it will dump the codec extradata.
  83. The dump is printed as the "data" field. It may contain newlines.
  84. @item -show_error
  85. Show information about the error found when trying to probe the input.
  86. The error information is printed within a section with name "ERROR".
  87. @item -show_format
  88. Show information about the container format of the input multimedia
  89. stream.
  90. All the container format information is printed within a section with
  91. name "FORMAT".
  92. @item -show_format_entry @var{name}
  93. Like @option{-show_format}, but only prints the specified entry of the
  94. container format information, rather than all. This option may be given more
  95. than once, then all specified entries will be shown.
  96. @item -show_packets
  97. Show information about each packet contained in the input multimedia
  98. stream.
  99. The information for each single packet is printed within a dedicated
  100. section with name "PACKET".
  101. @item -show_frames
  102. Show information about each frame contained in the input multimedia
  103. stream.
  104. The information for each single frame is printed within a dedicated
  105. section with name "FRAME".
  106. @item -show_streams
  107. Show information about each media stream contained in the input
  108. multimedia stream.
  109. Each media stream information is printed within a dedicated section
  110. with name "STREAM".
  111. @item -count_frames
  112. Count the number of frames per stream and report it in the
  113. corresponding stream section.
  114. @item -count_packets
  115. Count the number of packets per stream and report it in the
  116. corresponding stream section.
  117. @item -show_private_data, -private
  118. Show private data, that is data depending on the format of the
  119. particular shown element.
  120. This option is enabled by default, but you may need to disable it
  121. for specific uses, for example when creating XSD-compliant XML output.
  122. @item -show_program_version
  123. Show information related to program version.
  124. Version information is printed within a section with name
  125. "PROGRAM_VERSION".
  126. @item -show_library_versions
  127. Show information related to library versions.
  128. Version information for each library is printed within a section with
  129. name "LIBRARY_VERSION".
  130. @item -show_versions
  131. Show information related to program and library versions. This is the
  132. equivalent of setting both @option{-show_program_version} and
  133. @option{-show_library_versions} options.
  134. @item -bitexact
  135. Force bitexact output, useful to produce output which is not dependent
  136. on the specific build.
  137. @item -i @var{input_file}
  138. Read @var{input_file}.
  139. @end table
  140. @c man end
  141. @chapter Writers
  142. @c man begin WRITERS
  143. A writer defines the output format adopted by @command{ffprobe}, and will be
  144. used for printing all the parts of the output.
  145. A writer may accept one or more arguments, which specify the options to
  146. adopt.
  147. A description of the currently available writers follows.
  148. @section default
  149. Default format.
  150. Print each section in the form:
  151. @example
  152. [SECTION]
  153. key1=val1
  154. ...
  155. keyN=valN
  156. [/SECTION]
  157. @end example
  158. Metadata tags are printed as a line in the corresponding FORMAT or
  159. STREAM section, and are prefixed by the string "TAG:".
  160. This writer accepts options as a list of @var{key}=@var{value} pairs,
  161. separated by ":".
  162. A description of the accepted options follows.
  163. @table @option
  164. @item nokey, nk
  165. If set to 1 specify not to print the key of each field. Default value
  166. is 0.
  167. @item noprint_wrappers, nw
  168. If set to 1 specify not to print the section header and footer.
  169. Default value is 0.
  170. @end table
  171. @section compact, csv
  172. Compact and CSV format.
  173. The @code{csv} writer is equivalent to @code{compact}, but supports
  174. different defaults.
  175. Each section is printed on a single line.
  176. If no option is specifid, the output has the form:
  177. @example
  178. section|key1=val1| ... |keyN=valN
  179. @end example
  180. Metadata tags are printed in the corresponding "format" or "stream"
  181. section. A metadata tag key, if printed, is prefixed by the string
  182. "tag:".
  183. This writer accepts options as a list of @var{key}=@var{value} pairs,
  184. separated by ":".
  185. The description of the accepted options follows.
  186. @table @option
  187. @item item_sep, s
  188. Specify the character to use for separating fields in the output line.
  189. It must be a single printable character, it is "|" by default ("," for
  190. the @code{csv} writer).
  191. @item nokey, nk
  192. If set to 1 specify not to print the key of each field. Its default
  193. value is 0 (1 for the @code{csv} writer).
  194. @item escape, e
  195. Set the escape mode to use, default to "c" ("csv" for the @code{csv}
  196. writer).
  197. It can assume one of the following values:
  198. @table @option
  199. @item c
  200. Perform C-like escaping. Strings containing a newline ('\n'), carriage
  201. return ('\r'), a tab ('\t'), a form feed ('\f'), the escaping
  202. character ('\') or the item separator character @var{SEP} are escaped using C-like fashioned
  203. escaping, so that a newline is converted to the sequence "\n", a
  204. carriage return to "\r", '\' to "\\" and the separator @var{SEP} is
  205. converted to "\@var{SEP}".
  206. @item csv
  207. Perform CSV-like escaping, as described in RFC4180. Strings
  208. containing a newline ('\n'), a carriage return ('\r'), a double quote
  209. ('"'), or @var{SEP} are enclosed in double-quotes.
  210. @item none
  211. Perform no escaping.
  212. @end table
  213. @item print_section, p
  214. Print the section name at the begin of each line if the value is
  215. @code{1}, disable it with value set to @code{0}. Default value is
  216. @code{1}.
  217. @end table
  218. @section flat
  219. Flat format.
  220. A free-form output where each line contains an explicit key=value, such as
  221. "streams.stream.3.tags.foo=bar". The output is shell escaped, so it can be
  222. directly embedded in sh scripts as long as the separator character is an
  223. alphanumeric character or an underscore (see @var{sep_char} option).
  224. This writer accepts options as a list of @var{key}=@var{value} pairs,
  225. separated by ":".
  226. The description of the accepted options follows.
  227. @table @option
  228. @item sep_char, s
  229. Separator character used to separate the chapter, the section name, IDs and
  230. potential tags in the printed field key.
  231. Default value is '.'.
  232. @item hierarchical, h
  233. Specify if the section name specification should be hierarchical. If
  234. set to 1, and if there is more than one section in the current
  235. chapter, the section name will be prefixed by the name of the
  236. chapter. A value of 0 will disable this behavior.
  237. Default value is 1.
  238. @end table
  239. @section ini
  240. INI format output.
  241. Print output in an INI based format.
  242. The following conventions are adopted:
  243. @itemize
  244. @item
  245. all key and values are UTF-8
  246. @item
  247. '.' is the subgroup separator
  248. @item
  249. newline, '\t', '\f', '\b' and the following characters are escaped
  250. @item
  251. '\' is the escape character
  252. @item
  253. '#' is the comment indicator
  254. @item
  255. '=' is the key/value separator
  256. @item
  257. ':' is not used but usually parsed as key/value separator
  258. @end itemize
  259. This writer accepts options as a list of @var{key}=@var{value} pairs,
  260. separated by ":".
  261. The description of the accepted options follows.
  262. @table @option
  263. @item hierarchical, h
  264. Specify if the section name specification should be hierarchical. If
  265. set to 1, and if there is more than one section in the current
  266. chapter, the section name will be prefixed by the name of the
  267. chapter. A value of 0 will disable this behavior.
  268. Default value is 1.
  269. @end table
  270. @section json
  271. JSON based format.
  272. Each section is printed using JSON notation.
  273. This writer accepts options as a list of @var{key}=@var{value} pairs,
  274. separated by ":".
  275. The description of the accepted options follows.
  276. @table @option
  277. @item compact, c
  278. If set to 1 enable compact output, that is each section will be
  279. printed on a single line. Default value is 0.
  280. @end table
  281. For more information about JSON, see @url{http://www.json.org/}.
  282. @section xml
  283. XML based format.
  284. The XML output is described in the XML schema description file
  285. @file{ffprobe.xsd} installed in the FFmpeg datadir.
  286. An updated version of the schema can be retrieved at the url
  287. @url{http://www.ffmpeg.org/schema/ffprobe.xsd}, which redirects to the
  288. latest schema committed into the FFmpeg development source code tree.
  289. Note that the output issued will be compliant to the
  290. @file{ffprobe.xsd} schema only when no special global output options
  291. (@option{unit}, @option{prefix}, @option{byte_binary_prefix},
  292. @option{sexagesimal} etc.) are specified.
  293. This writer accepts options as a list of @var{key}=@var{value} pairs,
  294. separated by ":".
  295. The description of the accepted options follows.
  296. @table @option
  297. @item fully_qualified, q
  298. If set to 1 specify if the output should be fully qualified. Default
  299. value is 0.
  300. This is required for generating an XML file which can be validated
  301. through an XSD file.
  302. @item xsd_compliant, x
  303. If set to 1 perform more checks for ensuring that the output is XSD
  304. compliant. Default value is 0.
  305. This option automatically sets @option{fully_qualified} to 1.
  306. @end table
  307. For more information about the XML format, see
  308. @url{http://www.w3.org/XML/}.
  309. @c man end WRITERS
  310. @chapter Timecode
  311. @c man begin TIMECODE
  312. @command{ffprobe} supports Timecode extraction:
  313. @itemize
  314. @item
  315. MPEG1/2 timecode is extracted from the GOP, and is available in the video
  316. stream details (@option{-show_streams}, see @var{timecode}).
  317. @item
  318. MOV timecode is extracted from tmcd track, so is available in the tmcd
  319. stream metadata (@option{-show_streams}, see @var{TAG:timecode}).
  320. @item
  321. DV, GXF and AVI timecodes are available in format metadata
  322. (@option{-show_format}, see @var{TAG:timecode}).
  323. @end itemize
  324. @c man end TIMECODE
  325. @include syntax.texi
  326. @include decoders.texi
  327. @include demuxers.texi
  328. @include protocols.texi
  329. @include indevs.texi
  330. @ignore
  331. @setfilename ffprobe
  332. @settitle ffprobe media prober
  333. @c man begin SEEALSO
  334. ffmpeg(1), ffplay(1), ffserver(1) and the FFmpeg HTML documentation
  335. @c man end
  336. @c man begin AUTHORS
  337. The FFmpeg developers
  338. @c man end
  339. @end ignore
  340. @bye