Is it possible to set the COMPILATION tag in iTunes using taglib-sharp?
Unfortunately, there seems to be nothing similar to this:
TagLib.File tagFile = TagLib.File.Create(file); //.m4a file
tagFile.Tag.IsComilation = true;
tagFile.Save();
If not natively supported, is it possible to add an custom tag? Possibly through the use of TagLib.Mpeg4.AppleTag
or TagLib.Mpeg4.AppleAdditionalInfoBox
?
There are a lot of questions answered here on how to do this using Id3v2 tags, however not for iTunes tags. I also could not find any helpful documentation.
Any help very much appreciated!