diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-07 08:09:15 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-09-07 08:09:15 +0000 |
commit | f0861f466f6b65ec4fbe9ff551a9b8a6adaff1f0 (patch) | |
tree | c47c388b940b8ea954a39b65b28138c9f172c57e /ffplay.c | |
parent | 7ff0b84f0e4844a9452c5c59aeb28edb2caefc45 (diff) | |
download | ffmpeg-f0861f466f6b65ec4fbe9ff551a9b8a6adaff1f0.tar.gz |
Better tag support:
- Make ffplay show comments and copyright info besides the current track, title, author, album, year and genre.
- Makes the AVI demuxer parse the album name stores in the IPRD tag by the AVI muxer.
Patch by takis P issaris A uhasselt P be
Original thread:
[Ffmpeg-devel] [PATCH] Better tag support
Date: 09/06/06 16:58
Originally committed as revision 6186 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1755,6 +1755,10 @@ static void dump_stream_info(const AVFormatContext *s) fprintf(stderr, "Title: %s\n", s->title); if (s->author[0] != '\0') fprintf(stderr, "Author: %s\n", s->author); + if (s->copyright[0] != '\0') + fprintf(stderr, "Copyright: %s\n", s->copyright); + if (s->comment[0] != '\0') + fprintf(stderr, "Comment: %s\n", s->comment); if (s->album[0] != '\0') fprintf(stderr, "Album: %s\n", s->album); if (s->year != 0) |