mirror of
https://github.com/beetbox/beets.git
synced 2026-01-06 07:53:40 +01:00
completed library and test files
This commit is contained in:
parent
b193f250ba
commit
4c197e6f19
3 changed files with 10 additions and 0 deletions
|
|
@ -1643,6 +1643,12 @@ class MediaFile(object):
|
|||
StorageStyle('COMPOSERSORT'),
|
||||
ASFStorageStyle('WM/Composersortorder'),
|
||||
)
|
||||
work = MediaField(
|
||||
MP3DescStorageStyle(u'Work'),
|
||||
MP4StorageStyle('----:com.apple.iTunes:Work'),
|
||||
StorageStyle('WORK'),
|
||||
ASFStorageStyle('beets/Work'),
|
||||
)
|
||||
arranger = MediaField(
|
||||
MP3PeopleStorageStyle('TIPL', involvement='arranger'),
|
||||
MP4StorageStyle('----:com.apple.iTunes:Arranger'),
|
||||
|
|
|
|||
|
|
@ -70,6 +70,9 @@ def item(lib=None):
|
|||
composer=u'the composer',
|
||||
arranger=u'the arranger',
|
||||
grouping=u'the grouping',
|
||||
work=u'the work title',
|
||||
work_id=u'the work musicbrainz id',
|
||||
work_disambig=u'the work disambiguation',
|
||||
year=1,
|
||||
month=2,
|
||||
day=3,
|
||||
|
|
|
|||
|
|
@ -352,6 +352,7 @@ class ReadWriteTestBase(ArtTestMixin, GenreListTestMixin,
|
|||
'lyricist',
|
||||
'composer',
|
||||
'composer_sort',
|
||||
'work',
|
||||
'arranger',
|
||||
'grouping',
|
||||
'year',
|
||||
|
|
|
|||
Loading…
Reference in a new issue