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.

441 lines
11KB

  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 -show_error
  68. Show information about the error found when trying to probe the input.
  69. The error information is printed within a section with name "ERROR".
  70. @item -show_format
  71. Show information about the container format of the input multimedia
  72. stream.
  73. All the container format information is printed within a section with
  74. name "FORMAT".
  75. @item -show_format_entry @var{name}
  76. Like @option{-show_format}, but only prints the specified entry of the
  77. container format information, rather than all. This option may be given more
  78. than once, then all specified entries will be shown.
  79. @item -show_packets
  80. Show information about each packet contained in the input multimedia
  81. stream.
  82. The information for each single packet is printed within a dedicated
  83. section with name "PACKET".
  84. @item -show_frames
  85. Show information about each frame contained in the input multimedia
  86. stream.
  87. The information for each single frame is printed within a dedicated
  88. section with name "FRAME".
  89. @item -show_streams
  90. Show information about each media stream contained in the input
  91. multimedia stream.
  92. Each media stream information is printed within a dedicated section
  93. with name "STREAM".
  94. @item -count_frames
  95. Count the number of frames per stream and report it in the
  96. corresponding stream section.
  97. @item -count_packets
  98. Count the number of packets per stream and report it in the
  99. corresponding stream section.
  100. @item -show_private_data, -private
  101. Show private data, that is data depending on the format of the
  102. particular shown element.
  103. This option is enabled by default, but you may need to disable it
  104. for specific uses, for example when creating XSD-compliant XML output.
  105. @item -show_program_version
  106. Show information related to program version.
  107. Version information is printed within a section with name
  108. "PROGRAM_VERSION".
  109. @item -show_library_versions
  110. Show information related to library versions.
  111. Version information for each library is printed within a section with
  112. name "LIBRARY_VERSION".
  113. @item -show_versions
  114. Show information related to program and library versions. This is the
  115. equivalent of setting both @option{-show_program_version} and
  116. @option{-show_library_versions} options.
  117. @item -i @var{input_file}
  118. Read @var{input_file}.
  119. @end table
  120. @c man end
  121. @chapter Writers
  122. @c man begin WRITERS
  123. A writer defines the output format adopted by @command{ffprobe}, and will be
  124. used for printing all the parts of the output.
  125. A writer may accept one or more arguments, which specify the options to
  126. adopt.
  127. A description of the currently available writers follows.
  128. @section default
  129. Default format.
  130. Print each section in the form:
  131. @example
  132. [SECTION]
  133. key1=val1
  134. ...
  135. keyN=valN
  136. [/SECTION]
  137. @end example
  138. Metadata tags are printed as a line in the corresponding FORMAT or
  139. STREAM section, and are prefixed by the string "TAG:".
  140. This writer accepts options as a list of @var{key}=@var{value} pairs,
  141. separated by ":".
  142. A description of the accepted options follows.
  143. @table @option
  144. @item nokey, nk
  145. If set to 1 specify not to print the key of each field. Default value
  146. is 0.
  147. @item noprint_wrappers, nw
  148. If set to 1 specify not to print the section header and footer.
  149. Default value is 0.
  150. @end table
  151. @section compact
  152. Compact format.
  153. Each section is printed on a single line.
  154. If no option is specifid, the output has the form:
  155. @example
  156. section|key1=val1| ... |keyN=valN
  157. @end example
  158. Metadata tags are printed in the corresponding "format" or "stream"
  159. section. A metadata tag key, if printed, is prefixed by the string
  160. "tag:".
  161. This writer accepts options as a list of @var{key}=@var{value} pairs,
  162. separated by ":".
  163. The description of the accepted options follows.
  164. @table @option
  165. @item item_sep, s
  166. Specify the character to use for separating fields in the output line.
  167. It must be a single printable character, it is "|" by default.
  168. @item nokey, nk
  169. If set to 1 specify not to print the key of each field. Its default
  170. value is 0.
  171. @item escape, e
  172. Set the escape mode to use, default to "c".
  173. It can assume one of the following values:
  174. @table @option
  175. @item c
  176. Perform C-like escaping. Strings containing a newline ('\n'), carriage
  177. return ('\r'), a tab ('\t'), a form feed ('\f'), the escaping
  178. character ('\') or the item separator character @var{SEP} are escaped using C-like fashioned
  179. escaping, so that a newline is converted to the sequence "\n", a
  180. carriage return to "\r", '\' to "\\" and the separator @var{SEP} is
  181. converted to "\@var{SEP}".
  182. @item csv
  183. Perform CSV-like escaping, as described in RFC4180. Strings
  184. containing a newline ('\n'), a carriage return ('\r'), a double quote
  185. ('"'), or @var{SEP} are enclosed in double-quotes.
  186. @item none
  187. Perform no escaping.
  188. @end table
  189. @end table
  190. @section csv
  191. CSV format.
  192. This writer is equivalent to
  193. @code{compact=item_sep=,:nokey=1:escape=csv}.
  194. @section flat
  195. Flat format.
  196. A free-form output where each line contains an explicit key=value, such as
  197. "streams.stream.3.tags.foo=bar". The output is shell escaped, so it can be
  198. directly embedded in sh scripts as long as the separator character is an
  199. alphanumeric character or an underscore (see @var{sep_char} option).
  200. This writer accepts options as a list of @var{key}=@var{value} pairs,
  201. separated by ":".
  202. The description of the accepted options follows.
  203. @table @option
  204. @item sep_char, s
  205. Separator character used to separate the chapter, the section name, IDs and
  206. potential tags in the printed field key.
  207. Default value is '.'.
  208. @item hierarchical, h
  209. Specify if the section name specification should be hierarchical. If
  210. set to 1, and if there is more than one section in the current
  211. chapter, the section name will be prefixed by the name of the
  212. chapter. A value of 0 will disable this behavior.
  213. Default value is 1.
  214. @end table
  215. @section ini
  216. INI format output.
  217. Print output in an INI based format.
  218. The following conventions are adopted:
  219. @itemize
  220. @item
  221. all key and values are UTF-8
  222. @item
  223. '.' is the subgroup separator
  224. @item
  225. newline, '\t', '\f', '\b' and the following characters are escaped
  226. @item
  227. '\' is the escape character
  228. @item
  229. '#' is the comment indicator
  230. @item
  231. '=' is the key/value separator
  232. @item
  233. ':' is not used but usually parsed as key/value separator
  234. @end itemize
  235. This writer accepts options as a list of @var{key}=@var{value} pairs,
  236. separated by ":".
  237. The description of the accepted options follows.
  238. @table @option
  239. @item hierarchical, h
  240. Specify if the section name specification should be hierarchical. If
  241. set to 1, and if there is more than one section in the current
  242. chapter, the section name will be prefixed by the name of the
  243. chapter. A value of 0 will disable this behavior.
  244. Default value is 1.
  245. @end table
  246. @section json
  247. JSON based format.
  248. Each section is printed using JSON notation.
  249. This writer accepts options as a list of @var{key}=@var{value} pairs,
  250. separated by ":".
  251. The description of the accepted options follows.
  252. @table @option
  253. @item compact, c
  254. If set to 1 enable compact output, that is each section will be
  255. printed on a single line. Default value is 0.
  256. @end table
  257. For more information about JSON, see @url{http://www.json.org/}.
  258. @section xml
  259. XML based format.
  260. The XML output is described in the XML schema description file
  261. @file{ffprobe.xsd} installed in the FFmpeg datadir.
  262. An updated version of the schema can be retrieved at the url
  263. @url{http://www.ffmpeg.org/schema/ffprobe.xsd}, which redirects to the
  264. latest schema committed into the FFmpeg development source code tree.
  265. Note that the output issued will be compliant to the
  266. @file{ffprobe.xsd} schema only when no special global output options
  267. (@option{unit}, @option{prefix}, @option{byte_binary_prefix},
  268. @option{sexagesimal} etc.) are specified.
  269. This writer accepts options as a list of @var{key}=@var{value} pairs,
  270. separated by ":".
  271. The description of the accepted options follows.
  272. @table @option
  273. @item fully_qualified, q
  274. If set to 1 specify if the output should be fully qualified. Default
  275. value is 0.
  276. This is required for generating an XML file which can be validated
  277. through an XSD file.
  278. @item xsd_compliant, x
  279. If set to 1 perform more checks for ensuring that the output is XSD
  280. compliant. Default value is 0.
  281. This option automatically sets @option{fully_qualified} to 1.
  282. @end table
  283. For more information about the XML format, see
  284. @url{http://www.w3.org/XML/}.
  285. @c man end WRITERS
  286. @chapter Timecode
  287. @c man begin TIMECODE
  288. @command{ffprobe} supports Timecode extraction:
  289. @itemize
  290. @item
  291. MPEG1/2 timecode is extracted from the GOP, and is available in the video
  292. stream details (@option{-show_streams}, see @var{timecode}).
  293. @item
  294. MOV timecode is extracted from tmcd track, so is available in the tmcd
  295. stream metadata (@option{-show_streams}, see @var{TAG:timecode}).
  296. @item
  297. DV and GXF timecodes are available in format metadata
  298. (@option{-show_format}, see @var{TAG:timecode}).
  299. @end itemize
  300. @c man end TIMECODE
  301. @include syntax.texi
  302. @include decoders.texi
  303. @include demuxers.texi
  304. @include protocols.texi
  305. @include indevs.texi
  306. @ignore
  307. @setfilename ffprobe
  308. @settitle ffprobe media prober
  309. @c man begin SEEALSO
  310. ffmpeg(1), ffplay(1), ffserver(1) and the FFmpeg HTML documentation
  311. @c man end
  312. @c man begin AUTHORS
  313. The FFmpeg developers
  314. @c man end
  315. @end ignore
  316. @bye