Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
9806dda8
Commit
9806dda8
authored
Oct 02, 2011
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: create a dedicated "Writers" section in the manual
Also update documentation related to the output format.
parent
eff7684b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
11 deletions
+46
-11
ffprobe.texi
doc/ffprobe.texi
+46
-11
No files found.
doc/ffprobe.texi
View file @
9806dda8
...
...
@@ -42,18 +42,11 @@ for specifying which information to display, and for setting how
ffprobe will show it.
ffprobe output is designed to be easily parsable by a textual filter,
and consists of one or more sections of the form:
@example
[SECTION]
key1=val1
...
keyN=valN
[/SECTION]
@end example
and consists of one or more sections of a form defined by the selected
writer, which is specified by the @option
{
print
_
format
}
option.
Metadata tags stored in the container or in the streams are recognized
and printed in the corresponding "FORMAT" or "STREAM" section, and
are prefixed by the string "TAG:".
and printed in the corresponding "FORMAT" or "STREAM" section.
@c man end
...
...
@@ -89,7 +82,14 @@ options "-unit -prefix -byte_binary_prefix -sexagesimal".
@item -print
_
format @var
{
format
}
Set the output printing format.
Current available formats are "default" and "json".
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.
@item -show
_
format
Show information about the container format of the input multimedia
...
...
@@ -118,6 +118,41 @@ Read @var{input_file}.
@end table
@c man end
@chapter Writers
@c man begin WRITERS
A writer defines the output format adopted by @file
{
ffprobe
}
, and will be
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:".
@section json
JSON based format.
Each section is printed using JSON notation.
For more information about JSON, see @url
{
http://www.json.org/
}
.
@c man end WRITERS
@include decoders.texi
@include demuxers.texi
@include protocols.texi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment