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
3d189d41
Commit
3d189d41
authored
Oct 04, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: add -select_streams option
parent
d9dfe9a5
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
2 deletions
+43
-2
Changelog
Changelog
+1
-0
ffprobe.texi
doc/ffprobe.texi
+15
-0
ffprobe.c
ffprobe.c
+27
-2
No files found.
Changelog
View file @
3d189d41
...
...
@@ -5,6 +5,7 @@ version next:
- stream disposition information printing in ffprobe
- filter for loudness analysis following EBU R128
- Opus encoder using libopus
- ffprobe -select_streams option
version 1.0:
...
...
doc/ffprobe.texi
View file @
3d189d41
...
...
@@ -94,6 +94,21 @@ For example for printing the output in JSON format, specify:
For more details on the available output printing formats, see the
Writers section below.
@item -select
_
streams @var
{
stream
_
specifier
}
Select only the streams specified by @var
{
stream
_
specifier
}
. This
option affects only the options related to streams
(e.g. @code
{
show
_
streams
}
, @code
{
show
_
packets
}
, etc.).
For example to show only audio streams, you can use the command:
@example
ffprobe -show
_
streams -select
_
streams a INPUT
@end example
To show only video packets belonging to the video stream with index 1:
@example
ffprobe -show
_
packets -select
_
streams v:1 INPUT
@end example
@item -show
_
data
Show payload data, as an hexadecimal and ASCII dump. Coupled with
@option
{
-show
_
packets
}
, it will dump the packets' data. Coupled with
...
...
ffprobe.c
View file @
3d189d41
...
...
@@ -69,6 +69,7 @@ static int use_value_sexagesimal_format = 0;
static
int
show_private_data
=
1
;
static
char
*
print_format
;
static
char
*
stream_specifier
;
/* section structure definition */
...
...
@@ -138,8 +139,10 @@ static const char unit_second_str[] = "s" ;
static
const
char
unit_hertz_str
[]
=
"Hz"
;
static
const
char
unit_byte_str
[]
=
"byte"
;
static
const
char
unit_bit_per_second_str
[]
=
"bit/s"
;
static
uint64_t
*
nb_streams_packets
;
static
uint64_t
*
nb_streams_frames
;
static
int
*
selected_streams
;
static
void
exit_program
(
void
)
{
...
...
@@ -1614,6 +1617,7 @@ static void read_packets(WriterContext *w, AVFormatContext *fmt_ctx)
av_init_packet
(
&
pkt
);
while
(
!
av_read_frame
(
fmt_ctx
,
&
pkt
))
{
if
(
selected_streams
[
pkt
.
stream_index
])
{
if
(
do_read_packets
)
{
if
(
do_show_packets
)
show_packet
(
w
,
fmt_ctx
,
&
pkt
,
i
++
);
...
...
@@ -1623,6 +1627,7 @@ static void read_packets(WriterContext *w, AVFormatContext *fmt_ctx)
pkt1
=
pkt
;
while
(
pkt1
.
size
&&
process_frame
(
w
,
fmt_ctx
,
&
frame
,
&
pkt1
)
>
0
);
}
}
av_free_packet
(
&
pkt
);
}
av_init_packet
(
&
pkt
);
...
...
@@ -1789,6 +1794,7 @@ static void show_streams(WriterContext *w, AVFormatContext *fmt_ctx)
int
i
;
writer_print_section_header
(
w
,
SECTION_ID_STREAMS
);
for
(
i
=
0
;
i
<
fmt_ctx
->
nb_streams
;
i
++
)
if
(
selected_streams
[
i
])
show_stream
(
w
,
fmt_ctx
,
i
);
writer_print_section_footer
(
w
);
}
...
...
@@ -1896,7 +1902,7 @@ static void close_input_file(AVFormatContext **ctx_ptr)
static
int
probe_file
(
WriterContext
*
wctx
,
const
char
*
filename
)
{
AVFormatContext
*
fmt_ctx
;
int
ret
;
int
ret
,
i
;
int
section_id
;
do_read_frames
=
do_show_frames
||
do_count_frames
;
...
...
@@ -1906,6 +1912,22 @@ static int probe_file(WriterContext *wctx, const char *filename)
if
(
ret
>=
0
)
{
nb_streams_frames
=
av_calloc
(
fmt_ctx
->
nb_streams
,
sizeof
(
*
nb_streams_frames
));
nb_streams_packets
=
av_calloc
(
fmt_ctx
->
nb_streams
,
sizeof
(
*
nb_streams_packets
));
selected_streams
=
av_calloc
(
fmt_ctx
->
nb_streams
,
sizeof
(
*
selected_streams
));
for
(
i
=
0
;
i
<
fmt_ctx
->
nb_streams
;
i
++
)
{
if
(
stream_specifier
)
{
ret
=
avformat_match_stream_specifier
(
fmt_ctx
,
fmt_ctx
->
streams
[
i
],
stream_specifier
);
if
(
ret
<
0
)
goto
end
;
else
selected_streams
[
i
]
=
ret
;
}
else
{
selected_streams
[
i
]
=
1
;
}
}
if
(
do_read_frames
||
do_read_packets
)
{
if
(
do_show_frames
&&
do_show_packets
&&
wctx
->
writer
->
flags
&
WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER
)
...
...
@@ -1925,9 +1947,11 @@ static int probe_file(WriterContext *wctx, const char *filename)
if
(
do_show_format
)
show_format
(
wctx
,
fmt_ctx
);
end:
close_input_file
(
&
fmt_ctx
);
av_freep
(
&
nb_streams_frames
);
av_freep
(
&
nb_streams_packets
);
av_freep
(
&
selected_streams
);
}
return
ret
;
}
...
...
@@ -2062,6 +2086,7 @@ static const OptionDef real_options[] = {
{
"print_format"
,
OPT_STRING
|
HAS_ARG
,
{(
void
*
)
&
print_format
},
"set the output printing format (available formats are: default, compact, csv, flat, ini, json, xml)"
,
"format"
},
{
"of"
,
OPT_STRING
|
HAS_ARG
,
{(
void
*
)
&
print_format
},
"alias for -print_format"
,
"format"
},
{
"select_streams"
,
OPT_STRING
|
HAS_ARG
,
{(
void
*
)
&
stream_specifier
},
"select the specified streams"
,
"stream_specifier"
},
{
"show_data"
,
OPT_BOOL
,
{(
void
*
)
&
do_show_data
},
"show packets data"
},
{
"show_error"
,
OPT_BOOL
,
{(
void
*
)
&
do_show_error
}
,
"show probing error"
},
{
"show_format"
,
OPT_BOOL
,
{
&
do_show_format
}
,
"show format/container info"
},
...
...
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