mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 04:55:10 +01:00
fixed albumartist tag names (#218)
This commit is contained in:
parent
b63d6c858b
commit
bbf2e65154
2 changed files with 3 additions and 3 deletions
1
NEWS
1
NEWS
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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')]
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue