avdemux: Map artist to artist tag
authorMarinus Schraal <m.schraal@src.gnome.org>
Mon, 14 Nov 2016 10:49:52 +0000 (11:49 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 14 Nov 2016 11:03:07 +0000 (13:03 +0200)
It was incorrectly mapped to album-artist before.

https://bugzilla.gnome.org/show_bug.cgi?id=774398

ext/libav/gstavdemux.c

index e1316cd..dfc6bc4 100644 (file)
@@ -1089,7 +1089,7 @@ gst_ffmpeg_metadata_to_tag_list (AVDictionary * metadata)
      * header, without handling any variants. */
     ADD_TAG_MAPPING (tmp, "album", GST_TAG_ALBUM);
     ADD_TAG_MAPPING (tmp, "album_artist", GST_TAG_ALBUM_ARTIST);
-    ADD_TAG_MAPPING (tmp, "artist", GST_TAG_ALBUM_ARTIST);
+    ADD_TAG_MAPPING (tmp, "artist", GST_TAG_ARTIST);
     ADD_TAG_MAPPING (tmp, "comment", GST_TAG_COMMENT);
     ADD_TAG_MAPPING (tmp, "composer", GST_TAG_COMPOSER);
     ADD_TAG_MAPPING (tmp, "copyright", GST_TAG_COPYRIGHT);