diff options
author | David Conrad <lessen42@gmail.com> | 2009-11-23 08:47:44 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-11-23 08:47:44 +0000 |
commit | 7382902b8654356248cc5d1887a361d7febd878c (patch) | |
tree | 4934b6d57183b21c34b98e8d9c87b6d33fceee47 /libavformat/movenc.c | |
parent | 620af1a17a7cc8de54f8ff0eaa537cd5b9ba34b9 (diff) | |
download | ffmpeg-7382902b8654356248cc5d1887a361d7febd878c.tar.gz |
MOV: Add several iTunes metadata tags
Originally committed as revision 20586 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index eb57d1433c..ac6378c10b 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1377,6 +1377,11 @@ static int mov_write_ilst_tag(ByteIOContext *pb, MOVMuxContext *mov, mov_write_string_metadata(s, pb, "\251cmt", "comment" , 1); mov_write_string_metadata(s, pb, "\251gen", "genre" , 1); mov_write_string_metadata(s, pb, "\251cpy", "copyright", 1); + mov_write_string_metadata(s, pb, "desc", "description",1); + mov_write_string_metadata(s, pb, "ldes", "synopsis" , 1); + mov_write_string_metadata(s, pb, "tvsh", "show" , 1); + mov_write_string_metadata(s, pb, "tven", "episode_id",1); + mov_write_string_metadata(s, pb, "tvnn", "network" , 1); mov_write_trkn_tag(pb, mov, s); return updateSize(pb, pos); } |