View/edit ID3 data for MP3 files

Mag Roader picture Mag Roader · Sep 16, 2008 · Viewed 126.2k times · Source

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

Answer

Luke picture Luke · Nov 11, 2008

Thirding TagLib Sharp.

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