MP3 Cover Art Tagging in C#
I need to tag MP3 files with a Cover Art in C#... Is there any easy way to do this? I found UltraID3Lib as an exampel and it is great for regular ID3 tagging but I cant handle the cover art. If someone know an easy way to do this would it be great :) I do something like this : private static void FixAlbumArt(FileInfo MyFile) { //Find the jpeg file in the directory of the Mp3 File //We will embed this image into the ID3v2 tag FileInfo[] fiAlbumArt = MyFile.Directory.GetFiles("*.jpg"); if (fiAlbumArt.Length < 1) { Console.WriteLine("No Album Art Found in {0}", MyFile.Directory.Name); return; }