Hello, I am a Chinese developer and currently I am experiencing issues with reading and writing XMP in MP3.
code:
var track = new ATL.Track(filePath);
track.AdditionalFields ??= new Dictionary<string, string>();
track.AdditionalFields.Add("PRIV:XMP", label);
// track.AdditionalFields["PRIV:XMP"] = label;
track.Save();
label=.....
The goal is to write audition XMP to MP3, but after writing, it becomes:
PRIV:XMP
Why add the keyname before the value? Thank you