Do not write movement tags to Vorbis and APE for now.

This commit is contained in:
Philipp Wolfer
2018-11-22 20:19:31 +01:00
parent 6445ee0b3a
commit 75b1be67ec
2 changed files with 9 additions and 1 deletions

View File

@@ -212,6 +212,9 @@ class APEv2File(File):
def supports_tag(cls, name):
unsupported_tags = {
'gapless',
'movement',
'movementnumber',
'movementtotal',
'musicip_fingerprint',
'podcast',
'podcasturl',

View File

@@ -279,7 +279,12 @@ class VCommentFile(File):
@classmethod
def supports_tag(cls, name):
unsupported_tags = {'showmovement'}
unsupported_tags = {
'movement',
'movementnumber',
'movementtotal',
'showmovement',
}
return bool(name) and name not in unsupported_tags