| Index: source/patched-ffmpeg-mt/libavformat/movenc.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavformat/movenc.c (revision 65184)
|
| +++ source/patched-ffmpeg-mt/libavformat/movenc.c (working copy)
|
| @@ -1610,11 +1610,12 @@
|
| 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);
|
| mov_write_string_metadata(s, pb_buf, "\251day", "date" , 0);
|
| - mov_write_string_tag(pb_buf, "\251enc", LIBAVFORMAT_IDENT, 0, 0);
|
| + mov_write_string_metadata(s, pb_buf, "\251swr", "encoder" , 0);
|
| mov_write_string_metadata(s, pb_buf, "\251des", "comment" , 0);
|
| mov_write_string_metadata(s, pb_buf, "\251gen", "genre" , 0);
|
| mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright" , 0);
|
|
|