PlausiblyDamp
Administrator
Result of being bored in a hotel a few nights ago. Fairly rough and ready (only took a few hours and several guiness to throw together) but should handle ID3 v1 tags fine.
Supports ID3 v2 tags more or less : Provides property access for the more common tags but should read and write all tags. Text based tags are untested with anything but ASCII content.
Error handling may be a bit lacking feel free to PM me with any critical problems and Ill try to find time to fix them
Can be used something like
Includes a basic user interface to manipulate tags. As per usual code is provided with no guarantees at all.
EDIT: this version appears to work better
Supports ID3 v2 tags more or less : Provides property access for the more common tags but should read and write all tags. Text based tags are untested with anything but ASCII content.
Error handling may be a bit lacking feel free to PM me with any critical problems and Ill try to find time to fix them
Can be used something like
C#:
MP3TagLibrary.ID3v2Tag test = new MP3TagLibrary.ID3v2Tag(<Path to file here>);
MessageBox.Show(test.Artist); //should display artist
test.Artist= "This will overwrite the real tag - be careful";
test.Update(); //save changes back.
Includes a basic user interface to manipulate tags. As per usual code is provided with no guarantees at all.
EDIT: this version appears to work better
Attachments
Last edited by a moderator: