ffprobe.texi 12 KB

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