fixed albumartist tag names (#218)

This commit is contained in:
Adrian Sampson 2011-08-02 11:05:56 -07:00
parent b63d6c858b
commit bbf2e65154
2 changed files with 3 additions and 3 deletions

1
NEWS
View file

@ -1,6 +1,7 @@
1.0b10
------
* Fix a missing __future__ import in embedart on Python 2.5.
* Fix ID3 and MPEG-4 tag names for the album-artist field.
* Fix Unicode encoding of album artist, album type, and label.
1.0b9

View file

@ -799,9 +799,8 @@ class MediaFile(object):
etc = StorageStyle('compilation')
)
albumartist = MediaField(
mp3 = StorageStyle('TXXX', id3_desc=u'Album Artist'),
mp4 = StorageStyle(
'----:com.apple.iTunes:Album Artist'),
mp3 = StorageStyle('TPE2'),
mp4 = StorageStyle('aART'),
etc = [StorageStyle('album artist'),
StorageStyle('albumartist')]
)