Hello,
I'm searching for a tool which can handle the metainformations in m4a-files.
Mp3tag is doing fine, except of three iTunes fields.
I need to tag those iTunes specific fields:
Apple Store Country ('sfID')
Album Title ID ('atID')
Genre ID ('geID')
AtomicParsley (v0.9.6) can handle the Genre ID, but it couldn't handle the other fields.
Best regards,
Felix
Done with mutagen:
from mutagen.mp4 import MP4
audio = MP4("test.m4a")
audio["geID"] = [12345]
audio["atID"] = [12345]
audio["sfID"] = [12345]
audio.pprint()
audio.save()