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.

343 lines
8.7KB

  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 -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_packets
  76. Show information about each packet contained in the input multimedia
  77. stream.
  78. The information for each single packet is printed within a dedicated
  79. section with name "PACKET".
  80. @item -show_frames
  81. Show information about each frame contained in the input multimedia
  82. stream.
  83. The information for each single frame is printed within a dedicated
  84. section with name "FRAME".
  85. @item -show_streams
  86. Show information about each media stream contained in the input
  87. multimedia stream.
  88. Each media stream information is printed within a dedicated section
  89. with name "STREAM".
  90. @item -count_frames
  91. Count the number of frames per stream and report it in the
  92. corresponding stream section.
  93. @item -count_packets
  94. Count the number of packets per stream and report it in the
  95. corresponding stream section.
  96. @item -show_private_data, -private
  97. Show private data, that is data depending on the format of the
  98. particular shown element.
  99. This option is enabled by default, but you may need to disable it
  100. for specific uses, for example when creating XSD-compliant XML output.
  101. @item -show_program_version
  102. Show information related to program version.
  103. Version information is printed within a section with name
  104. "PROGRAM_VERSION".
  105. @item -show_library_versions
  106. Show information related to library versions.
  107. Version information for each library is printed within a section with
  108. name "LIBRARY_VERSION".
  109. @item -show_versions
  110. Show information related to program and library versions. This is the
  111. equivalent of setting both @option{-show_program_version} and
  112. @option{-show_library_versions} options.
  113. @item -i @var{input_file}
  114. Read @var{input_file}.
  115. @end table
  116. @c man end
  117. @chapter Writers
  118. @c man begin WRITERS
  119. A writer defines the output format adopted by @command{ffprobe}, and will be
  120. used for printing all the parts of the output.
  121. A writer may accept one or more arguments, which specify the options to
  122. adopt.
  123. A description of the currently available writers follows.
  124. @section default
  125. Default format.
  126. Print each section in the form:
  127. @example
  128. [SECTION]
  129. key1=val1
  130. ...
  131. keyN=valN
  132. [/SECTION]
  133. @end example
  134. Metadata tags are printed as a line in the corresponding FORMAT or
  135. STREAM section, and are prefixed by the string "TAG:".
  136. @section compact
  137. Compact format.
  138. Each section is printed on a single line.
  139. If no option is specifid, the output has the form:
  140. @example
  141. section|key1=val1| ... |keyN=valN
  142. @end example
  143. Metadata tags are printed in the corresponding "format" or "stream"
  144. section. A metadata tag key, if printed, is prefixed by the string
  145. "tag:".
  146. This writer accepts options as a list of @var{key}=@var{value} pairs,
  147. separated by ":".
  148. The description of the accepted options follows.
  149. @table @option
  150. @item item_sep, s
  151. Specify the character to use for separating fields in the output line.
  152. It must be a single printable character, it is "|" by default.
  153. @item nokey, nk
  154. If set to 1 specify not to print the key of each field. Its default
  155. value is 0.
  156. @item escape, e
  157. Set the escape mode to use, default to "c".
  158. It can assume one of the following values:
  159. @table @option
  160. @item c
  161. Perform C-like escaping. Strings containing a newline ('\n') or
  162. carriage return ('\r'), the escaping character ('\') or the item
  163. separator character @var{SEP} are escaped using C-like fashioned
  164. escaping, so that a newline is converted to the sequence "\n", a
  165. carriage return to "\r", '\' to "\\" and the separator @var{SEP} is
  166. converted to "\@var{SEP}".
  167. @item csv
  168. Perform CSV-like escaping, as described in RFC4180. Strings
  169. containing a newline ('\n'), a carriage return ('\r'), a double quote
  170. ('"'), or @var{SEP} are enclosed in double-quotes.
  171. @item none
  172. Perform no escaping.
  173. @end table
  174. @end table
  175. @section csv
  176. CSV format.
  177. This writer is equivalent to
  178. @code{compact=item_sep=,:nokey=1:escape=csv}.
  179. @section json
  180. JSON based format.
  181. Each section is printed using JSON notation.
  182. This writer accepts options as a list of @var{key}=@var{value} pairs,
  183. separated by ":".
  184. The description of the accepted options follows.
  185. @table @option
  186. @item compact, c
  187. If set to 1 enable compact output, that is each section will be
  188. printed on a single line. Default value is 0.
  189. @end table
  190. For more information about JSON, see @url{http://www.json.org/}.
  191. @section xml
  192. XML based format.
  193. The XML output is described in the XML schema description file
  194. @file{ffprobe.xsd} installed in the FFmpeg datadir.
  195. Note that the output issued will be compliant to the
  196. @file{ffprobe.xsd} schema only when no special global output options
  197. (@option{unit}, @option{prefix}, @option{byte_binary_prefix},
  198. @option{sexagesimal} etc.) are specified.
  199. This writer accepts options as a list of @var{key}=@var{value} pairs,
  200. separated by ":".
  201. The description of the accepted options follows.
  202. @table @option
  203. @item fully_qualified, q
  204. If set to 1 specify if the output should be fully qualified. Default
  205. value is 0.
  206. This is required for generating an XML file which can be validated
  207. through an XSD file.
  208. @item xsd_compliant, x
  209. If set to 1 perform more checks for ensuring that the output is XSD
  210. compliant. Default value is 0.
  211. This option automatically sets @option{fully_qualified} to 1.
  212. @end table
  213. For more information about the XML format, see
  214. @url{http://www.w3.org/XML/}.
  215. @chapter Timecode
  216. @command{ffprobe} supports Timecode extraction:
  217. @itemize
  218. @item MPEG1/2 timecode is extracted from the GOP, and is available in the video
  219. stream details (@option{-show_streams}, see @var{timecode}).
  220. @item MOV timecode is extracted from tmcd track, so is available in the tmcd
  221. stream metadata (@option{-show_streams}, see @var{TAG:timecode}).
  222. @item DV and GXF timecodes are available in format metadata
  223. (@option{-show_format}, see @var{TAG:timecode}).
  224. @end itemize
  225. @c man end WRITERS
  226. @include decoders.texi
  227. @include demuxers.texi
  228. @include protocols.texi
  229. @include indevs.texi
  230. @ignore
  231. @setfilename ffprobe
  232. @settitle ffprobe media prober
  233. @c man begin SEEALSO
  234. ffmpeg(1), ffplay(1), ffserver(1) and the FFmpeg HTML documentation
  235. @c man end
  236. @c man begin AUTHORS
  237. The FFmpeg developers
  238. @c man end
  239. @end ignore
  240. @bye