diff --git a/NEWS b/NEWS index 61a453d40..c5d73d870 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,8 @@ importing, you can choose the "as Tracks" (T) option to add singletons to your library. The query "singleton:true" matches only singleton tracks; "singleton:false" matches only album tracks. +* Support for album art embedded in files. The "embedcoverart" plugin + provides this functionality. (Thanks, daenney!) * The "distance" number, which quantifies how different an album's current and proposed metadata are, is now displayed as "similarity" instead. This should be less noisy and confusing; you'll now see diff --git a/beets/mediafile.py b/beets/mediafile.py index 12df16e41..0ceed8b8a 100644 --- a/beets/mediafile.py +++ b/beets/mediafile.py @@ -681,10 +681,10 @@ class MediaFile(object): mp3 = StorageStyle('APIC', id3_desc=u'Cover'), ) albumart_mime = MediaField( - mp3 = StorageStyple('APIC', mime=u''), + mp3 = StorageStyle('APIC', mime=u''), ) albumart_data = MediaField( - mp3 = StorageStyple('APIC', data=u''), + mp3 = StorageStyle('APIC', data=u''), mp4 = StorageStyle('covr', as_type=str), etc = StorageStyle('picture') )