Is it possible edit Tags of an ByteArray which represents a Mp3-File with TagLib#?
At the moment I need to do it this way:
System.IO.File.WriteAllBytes(path + file + ".mp3", byt);
TagLib.File f = TagLib.File.Create(path + song + ".mp3");
Is it possible to avoid this and create the TagLib.File directly from a ByteArray?