tag: added support for MusicBrainz tags
Added all important id tags from the MusicBrainz wiki: http://musicbrainz.org/doc/MusicBrainzTag This should automatically enable its suport in the vorbis and flac decoder plugins.
This commit is contained in:
parent
0dc1b4a44e
commit
30e2880675
1
NEWS
1
NEWS
|
@ -3,6 +3,7 @@ ver 0.15 - (200?/??/??)
|
|||
- parse Icy-Metadata
|
||||
* tags:
|
||||
- support the "album artist" tag
|
||||
- support MusicBrainz tags
|
||||
- parse RVA2 tags in mp3 files
|
||||
* decoders:
|
||||
- audiofile: streaming support added
|
||||
|
|
|
@ -53,7 +53,13 @@ const char *mpdTagItemKeys[TAG_NUM_OF_ITEM_TYPES] = {
|
|||
"Composer",
|
||||
"Performer",
|
||||
"Comment",
|
||||
"Disc"
|
||||
"Disc",
|
||||
|
||||
/* MusicBrainz tags from http://musicbrainz.org/doc/MusicBrainzTag */
|
||||
[TAG_MUSICBRAINZ_ARTISTID] = "MUSICBRAINZ_ARTISTID",
|
||||
[TAG_MUSICBRAINZ_ALBUMID] = "MUSICBRAINZ_ALBUMID",
|
||||
[TAG_MUSICBRAINZ_ALBUMARTISTID] = "MUSICBRAINZ_ALBUMARTISTID",
|
||||
[TAG_MUSICBRAINZ_TRACKID] = "MUSICBRAINZ_TACKID",
|
||||
};
|
||||
|
||||
int8_t ignoreTagItems[TAG_NUM_OF_ITEM_TYPES];
|
||||
|
|
Loading…
Reference in New Issue