Search code examples
c#.netmp3id3

View/edit ID3 data for MP3 files


What's a quick and easy way to view and edit ID3 tags (artist, album, etc.) using C#?


Solution

  • Thirding TagLib Sharp.

    TagLib.File f = TagLib.File.Create(path);
    f.Tag.Album = "New Album Title";
    f.Save();