diff movenc.c @ 5382:45d0832f48b6 libavformat

MOV: Add several iTunes metadata tags
author conrad
date Mon, 23 Nov 2009 08:47:44 +0000
parents b54fa3ff2f61
children 5d5c1dc09223
line wrap: on
line diff
--- a/movenc.c	Mon Nov 23 08:47:40 2009 +0000
+++ b/movenc.c	Mon Nov 23 08:47:44 2009 +0000
@@ -1377,6 +1377,11 @@
     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);
 }