hope all is well. I am getting the error below while trying to obtain the meta tags from an MP3 file on Visual Studio within a C# form application. Any help is appreciated. Thanks in advance.
System.NotImplementedException: 'ID3v2 Version 2 is not supported.'
this is what my code looks like so far:
Mp3Lib.Mp3File mFile = new Mp3Lib.Mp3File(file: @"C:\Users\user\Music\song.mp3");
string mArtist = mFile.TagHandler.Artist;