projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
10l: add prefix "TAG:" to the metadata tags key showed for each stream.
[ffmpeg.git]
/
ffprobe.c
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");
}