ffprobe.texi 8.74 KB
Newer Older
Stefano Sabatini's avatar
Stefano Sabatini committed
1 2
\input texinfo @c -*- texinfo -*-

3
@settitle ffprobe Documentation
Stefano Sabatini's avatar
Stefano Sabatini committed
4
@titlepage
5
@center @titlefont{ffprobe Documentation}
Stefano Sabatini's avatar
Stefano Sabatini committed
6 7
@end titlepage

8 9 10 11
@top

@contents

12 13 14 15 16 17 18 19 20 21
@chapter Synopsis

The generic syntax is:

@example
@c man begin SYNOPSIS
ffprobe [options] [@file{input_file}]
@c man end
@end example

22
@chapter Description
Stefano Sabatini's avatar
Stefano Sabatini committed
23 24
@c man begin DESCRIPTION

25
ffprobe gathers information from multimedia streams and prints it in
Stefano Sabatini's avatar
Stefano Sabatini committed
26 27 28 29 30 31 32 33 34 35
human- and machine-readable fashion.

For example it can be used to check the format of the container used
by a multimedia stream and the format and type of each media stream
contained in it.

If a filename is specified in input, ffprobe will try to open and
probe the file content. If the file cannot be opened or recognized as
a multimedia file, a positive exit code is returned.

36
ffprobe may be employed both as a standalone application or in
Stefano Sabatini's avatar
Stefano Sabatini committed
37 38 39 40 41 42 43
combination with a textual filter, which may perform more
sophisticated processing, e.g. statistical processing or plotting.

Options are used to list some of the formats supported by ffprobe or
for specifying which information to display, and for setting how
ffprobe will show it.

44
ffprobe output is designed to be easily parsable by a textual filter,
45 46
and consists of one or more sections of a form defined by the selected
writer, which is specified by the @option{print_format} option.
Stefano Sabatini's avatar
Stefano Sabatini committed
47 48

Metadata tags stored in the container or in the streams are recognized
49
and printed in the corresponding "FORMAT" or "STREAM" section.
Stefano Sabatini's avatar
Stefano Sabatini committed
50 51 52

@c man end

53
@chapter Options
Stefano Sabatini's avatar
Stefano Sabatini committed
54 55
@c man begin OPTIONS

56
@include avtools-common-opts.texi
Stefano Sabatini's avatar
Stefano Sabatini committed
57 58 59 60

@section Main options

@table @option
61 62 63 64

@item -f @var{format}
Force format to use.

Stefano Sabatini's avatar
Stefano Sabatini committed
65 66 67 68
@item -unit
Show the unit of the displayed values.

@item -prefix
69 70
Use SI prefixes for the displayed values.
Unless the "-byte_binary_prefix" option is used all the prefixes
Stefano Sabatini's avatar
Stefano Sabatini committed
71 72 73 74 75 76 77 78 79 80
are decimal.

@item -byte_binary_prefix
Force the use of binary prefixes for byte values.

@item -sexagesimal
Use sexagesimal format HH:MM:SS.MICROSECONDS for time values.

@item -pretty
Prettify the format of the displayed values, it corresponds to the
81
options "-unit -prefix -byte_binary_prefix -sexagesimal".
Stefano Sabatini's avatar
Stefano Sabatini committed
82

83
@item -print_format @var{writer_name}[=@var{writer_options}]
84
Set the output printing format.
85

86 87 88
@var{writer_name} specifies the name of the writer, and
@var{writer_options} specifies the options to be passed to the writer.

89 90 91 92 93 94 95
For example for printing the output in JSON format, specify:
@example
-print_format json
@end example

For more details on the available output printing formats, see the
Writers section below.
96

97 98 99 100 101
@item -show_error
Show information about the error found when trying to probe the input.

The error information is printed within a section with name "ERROR".

Stefano Sabatini's avatar
Stefano Sabatini committed
102 103 104 105 106
@item -show_format
Show information about the container format of the input multimedia
stream.

All the container format information is printed within a section with
107
name "FORMAT".
Stefano Sabatini's avatar
Stefano Sabatini committed
108

109 110 111 112 113
@item -show_packets
Show information about each packet contained in the input multimedia
stream.

The information for each single packet is printed within a dedicated
114
section with name "PACKET".
115

116
@item -show_frames
117
Show information about each frame contained in the input multimedia
118 119 120 121 122
stream.

The information for each single frame is printed within a dedicated
section with name "FRAME".

Stefano Sabatini's avatar
Stefano Sabatini committed
123 124 125 126 127
@item -show_streams
Show information about each media stream contained in the input
multimedia stream.

Each media stream information is printed within a dedicated section
128
with name "STREAM".
Stefano Sabatini's avatar
Stefano Sabatini committed
129

130 131 132 133 134 135 136 137
@item -count_frames
Count the number of frames per stream and report it in the
corresponding stream section.

@item -count_packets
Count the number of packets per stream and report it in the
corresponding stream section.

138 139 140 141 142 143
@item -show_private_data, -private
Show private data, that is data depending on the format of the
particular shown element.
This option is enabled by default, but you may need to disable it
for specific uses, for example when creating XSD-compliant XML output.

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
@item -show_program_version
Show information related to program version.

Version information is printed within a section with name
"PROGRAM_VERSION".

@item -show_library_versions
Show information related to library versions.

Version information for each library is printed within a section with
name "LIBRARY_VERSION".

@item -show_versions
Show information related to program and library versions. This is the
equivalent of setting both @option{-show_program_version} and
@option{-show_library_versions} options.

161 162 163
@item -i @var{input_file}
Read @var{input_file}.

Stefano Sabatini's avatar
Stefano Sabatini committed
164 165 166
@end table
@c man end

167 168 169
@chapter Writers
@c man begin WRITERS

170
A writer defines the output format adopted by @command{ffprobe}, and will be
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
used for printing all the parts of the output.

A writer may accept one or more arguments, which specify the options to
adopt.

A description of the currently available writers follows.

@section default
Default format.

Print each section in the form:
@example
[SECTION]
key1=val1
...
keyN=valN
[/SECTION]
@end example

Metadata tags are printed as a line in the corresponding FORMAT or
STREAM section, and are prefixed by the string "TAG:".

193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
@section compact
Compact format.

Each section is printed on a single line.
If no option is specifid, the output has the form:
@example
section|key1=val1| ... |keyN=valN
@end example

Metadata tags are printed in the corresponding "format" or "stream"
section. A metadata tag key, if printed, is prefixed by the string
"tag:".

This writer accepts options as a list of @var{key}=@var{value} pairs,
separated by ":".

The description of the accepted options follows.

@table @option

@item item_sep, s
Specify the character to use for separating fields in the output line.
It must be a single printable character, it is "|" by default.

@item nokey, nk
If set to 1 specify not to print the key of each field. Its default
value is 0.

@item escape, e
Set the escape mode to use, default to "c".

It can assume one of the following values:
@table @option
@item c
Perform C-like escaping. Strings containing a newline ('\n') or
carriage return ('\r'), the escaping character ('\') or the item
separator character @var{SEP} are escaped using C-like fashioned
escaping, so that a newline is converted to the sequence "\n", a
carriage return to "\r", '\' to "\\" and the separator @var{SEP} is
converted to "\@var{SEP}".

@item csv
Perform CSV-like escaping, as described in RFC4180.  Strings
containing a newline ('\n'), a carriage return ('\r'), a double quote
('"'), or @var{SEP} are enclosed in double-quotes.

@item none
Perform no escaping.
@end table

@end table

245 246 247 248 249 250
@section csv
CSV format.

This writer is equivalent to
@code{compact=item_sep=,:nokey=1:escape=csv}.

251 252 253 254 255
@section json
JSON based format.

Each section is printed using JSON notation.

256 257 258 259 260 261 262 263 264 265 266 267
This writer accepts options as a list of @var{key}=@var{value} pairs,
separated by ":".

The description of the accepted options follows.

@table @option

@item compact, c
If set to 1 enable compact output, that is each section will be
printed on a single line. Default value is 0.
@end table

268 269
For more information about JSON, see @url{http://www.json.org/}.

270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
@section xml
XML based format.

The XML output is described in the XML schema description file
@file{ffprobe.xsd} installed in the FFmpeg datadir.

Note that the output issued will be compliant to the
@file{ffprobe.xsd} schema only when no special global output options
(@option{unit}, @option{prefix}, @option{byte_binary_prefix},
@option{sexagesimal} etc.) are specified.

This writer accepts options as a list of @var{key}=@var{value} pairs,
separated by ":".

The description of the accepted options follows.

@table @option

@item fully_qualified, q
If set to 1 specify if the output should be fully qualified. Default
value is 0.
This is required for generating an XML file which can be validated
through an XSD file.

@item xsd_compliant, x
If set to 1 perform more checks for ensuring that the output is XSD
compliant. Default value is 0.
This option automatically sets @option{fully_qualified} to 1.
@end table

For more information about the XML format, see
@url{http://www.w3.org/XML/}.

303 304 305 306 307 308 309 310 311 312
@chapter Timecode

@command{ffprobe} supports Timecode extraction:

@itemize

@item MPEG1/2 timecode is extracted from the GOP, and is available in the video
stream details (@option{-show_streams}, see @var{timecode}).

@item MOV timecode is extracted from tmcd track, so is available in the tmcd
313
stream metadata (@option{-show_streams}, see @var{TAG:timecode}).
314 315 316 317 318 319

@item DV and GXF timecodes are available in format metadata
(@option{-show_format}, see @var{TAG:timecode}).

@end itemize

320 321
@c man end WRITERS

322
@include decoders.texi
323
@include demuxers.texi
Stefano Sabatini's avatar
Stefano Sabatini committed
324
@include protocols.texi
325 326
@include indevs.texi

Stefano Sabatini's avatar
Stefano Sabatini committed
327 328 329
@ignore

@setfilename ffprobe
330
@settitle ffprobe media prober
Stefano Sabatini's avatar
Stefano Sabatini committed
331 332

@c man begin SEEALSO
333
ffmpeg(1), ffplay(1), ffserver(1) and the FFmpeg HTML documentation
Stefano Sabatini's avatar
Stefano Sabatini committed
334 335
@c man end

336
@c man begin AUTHORS
337
The FFmpeg developers
338 339
@c man end

Stefano Sabatini's avatar
Stefano Sabatini committed
340 341 342
@end ignore

@bye