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
cea87fb2
Commit
cea87fb2
authored
Jun 04, 2011
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: implement -i FILE option
Useful for mimicking the ffmpeg -i FILE syntax.
parent
9b032c65
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
ffprobe.texi
doc/ffprobe.texi
+3
-0
ffprobe.c
ffprobe.c
+1
-0
No files found.
doc/ffprobe.texi
View file @
cea87fb2
...
...
@@ -108,6 +108,9 @@ multimedia stream.
Each media stream information is printed within a dedicated section
with name "STREAM".
@item -i @var
{
input
_
file
}
Read @var
{
input
_
file
}
.
@end table
@c man end
...
...
ffprobe.c
View file @
cea87fb2
...
...
@@ -385,6 +385,7 @@ static const OptionDef options[] = {
{
"show_packets"
,
OPT_BOOL
,
{(
void
*
)
&
do_show_packets
},
"show packets info"
},
{
"show_streams"
,
OPT_BOOL
,
{(
void
*
)
&
do_show_streams
},
"show streams info"
},
{
"default"
,
HAS_ARG
|
OPT_AUDIO
|
OPT_VIDEO
|
OPT_EXPERT
,
{(
void
*
)
opt_default
},
"generic catch all option"
,
""
},
{
"i"
,
HAS_ARG
,
{(
void
*
)
opt_input_file
},
"read specified file"
,
"input_file"
},
{
NULL
,
},
};
...
...
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