[FFmpeg-cvslog] r25498 - trunk/libavformat/movenc.c

bcoudurier subversion
Sat Oct 16 01:23:47 CEST 2010


Author: bcoudurier
Date: Sat Oct 16 01:23:47 2010
New Revision: 25498

Log:
In mov muxer, write artist metadata tag

Modified:
   trunk/libavformat/movenc.c

Modified: trunk/libavformat/movenc.c
==============================================================================
--- trunk/libavformat/movenc.c	Sat Oct 16 01:16:11 2010	(r25497)
+++ trunk/libavformat/movenc.c	Sat Oct 16 01:23:47 2010	(r25498)
@@ -1610,6 +1610,7 @@ static int mov_write_udta_tag(ByteIOCont
             mov_write_3gp_udta_tag(pb_buf, s, "cprt", "copyright");
             mov_write_3gp_udta_tag(pb_buf, s, "yrrc", "date");
         } else if (mov->mode == MODE_MOV) { // the title field breaks gtkpod with mp4 and my suspicion is that stuff is not valid in mp4
+            mov_write_string_metadata(s, pb_buf, "\251ART", "artist"     , 0);
             mov_write_string_metadata(s, pb_buf, "\251nam", "title"      , 0);
             mov_write_string_metadata(s, pb_buf, "\251aut", "author"     , 0);
             mov_write_string_metadata(s, pb_buf, "\251alb", "album"      , 0);



More information about the ffmpeg-cvslog mailing list