mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-22 15:44:59 +00:00
Do not write movement tags to Vorbis and APE for now.
This commit is contained in:
@@ -212,6 +212,9 @@ class APEv2File(File):
|
||||
def supports_tag(cls, name):
|
||||
unsupported_tags = {
|
||||
'gapless',
|
||||
'movement',
|
||||
'movementnumber',
|
||||
'movementtotal',
|
||||
'musicip_fingerprint',
|
||||
'podcast',
|
||||
'podcasturl',
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user