Summary
Add first-class support for a remixers metadata field in mediafile, including read/write mapping to the Vorbis comment tag REMIXER (and equivalent tags in other container/tag formats).
Motivation
Many electronic/club releases credit remixers separately from primary artists. Today this information is often stored in format-specific tags (e.g., Vorbis REMIXER) and gets dropped or conflated with artists. Adding remixers improves metadata fidelity and round-trip editing.
Potential solution
This should be as simple as adding
remixers = ListMediaField(
MP3ListDescStorageStyle(desc="REMIXERS"),
MP4ListStorageStyle("----:com.apple.iTunes:REMIXERS"),
ListStorageStyle("REMIXER"),
ASFStorageStyle("WM/REMIXERS"),
)
Summary
Add first-class support for a
remixersmetadata field inmediafile, including read/write mapping to the Vorbis comment tagREMIXER(and equivalent tags in other container/tag formats).Motivation
Many electronic/club releases credit remixers separately from primary artists. Today this information is often stored in format-specific tags (e.g., Vorbis
REMIXER) and gets dropped or conflated withartists. Addingremixersimproves metadata fidelity and round-trip editing.Potential solution
This should be as simple as adding