diff options
author | Matthieu Bouron <matthieu.bouron@smartjog.com> | 2012-02-01 16:23:53 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-02-17 01:06:43 +0100 |
commit | 29b9aee49f310fa0eb194f591417aaef0d519e7a (patch) | |
tree | 6eb2263fe9cec775177298481821e365185c37ac /doc | |
parent | 8c1ebdcea2d3f84bd5c01ce3dce5e619c845bc0f (diff) | |
download | ffmpeg-29b9aee49f310fa0eb194f591417aaef0d519e7a.tar.gz |
ffprobe: add count_frames and count_packets options
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ffprobe.texi | 8 | ||||
-rw-r--r-- | doc/ffprobe.xsd | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/ffprobe.texi b/doc/ffprobe.texi index 829a46e4b6..12fe29f01f 100644 --- a/doc/ffprobe.texi +++ b/doc/ffprobe.texi @@ -127,6 +127,14 @@ multimedia stream. Each media stream information is printed within a dedicated section with name "STREAM". +@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. + @item -show_private_data, -private Show private data, that is data depending on the format of the particular shown element. diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd index 9ac80bb0e6..e7104ef351 100644 --- a/doc/ffprobe.xsd +++ b/doc/ffprobe.xsd @@ -111,6 +111,8 @@ <xsd:attribute name="start_time" type="xsd:float"/> <xsd:attribute name="duration" type="xsd:float"/> <xsd:attribute name="nb_frames" type="xsd:int"/> + <xsd:attribute name="nb_read_frames" type="xsd:int"/> + <xsd:attribute name="nb_read_packets" type="xsd:int"/> </xsd:complexType> <xsd:complexType name="formatType"> |