mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 03:52:25 +00:00
avdemux: Map artist to artist tag
It was incorrectly mapped to album-artist before. https://bugzilla.gnome.org/show_bug.cgi?id=774398
This commit is contained in:
parent
b81813d928
commit
06a9a34d6d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue