What's a quick and easy way to view and edit MP3 id3 tags (artist, album, etc.) using C#?
|
|
Thirding TagLib Sharp.
|
||
|
|
|
TagLib Sharp has support for reading ID3 tags. |
||||
|
|
|
TagLib Sharp is pretty popular. As a side note, if you wanted to take a quick and dirty peek at doing it yourself.. here is a C# snippet I found to read an mp3's tag info.
|
||||
|
|
|
UltraID3Lib http://UltraID3Lib.com
|
||
|
|
|
|
I tried to create an app to update the tags on MP3 files...but if is use 'TagLib Sharp' and the code in the accepted answer all the tags just are set to nothing. So I tried 'UltraID3Lib' but if I set the genre to "Podcast" it errors. I think perhaps "Podcast" is not part to the standard tags. And it also errors with "Index was out of range..." on .read on some podcast...in particular the Stackoverflow mp3. Eventually I used http://home.wanadoo.nl/squell/id3.html and a batch file |
||
|
|
