projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
912dd63
)
10l: add prefix "TAG:" to the metadata tags key showed for each stream.
author
Stefano Sabatini
<stefano.sabatini-lala@poste.it>
Thu, 25 Feb 2010 00:16:43 +0000
(
00:16
+0000)
committer
Stefano Sabatini
<stefano.sabatini-lala@poste.it>
Thu, 25 Feb 2010 00:16:43 +0000
(
00:16
+0000)
This is consistent with the metadata displaying in show_format() and
with the documentation.
Originally committed as revision 22046 to svn://svn.ffmpeg.org/ffmpeg/trunk
ffprobe.c
patch
|
blob
|
history
diff --git
a/ffprobe.c
b/ffprobe.c
index
7ac20eb
..
4a8ca88
100644
(file)
--- a/
ffprobe.c
+++ b/
ffprobe.c
@@
-184,7
+184,7
@@
static void show_stream(AVFormatContext *fmt_ctx, int stream_idx)
&stream->time_base));
while ((tag = av_metadata_get(stream->metadata, "", tag, AV_METADATA_IGNORE_SUFFIX)))
- printf("%s=%s\n", tag->key, tag->value);
+ printf("
TAG:
%s=%s\n", tag->key, tag->value);
printf("[/STREAM]\n");
}