usmanazizgroupdocs
10/7/2016 - 9:13 AM

UpdateID3v1Tag.cs

// For complete examples and data files, please go to https://github.com/groupdocs-metadata/GroupDocs.Metadata-for-.NET
// initialize Mp3Format class
Mp3Format mp3Format = new Mp3Format((Common.MapSourceFilePath(filePath)));

// create id3v1 tag
Id3v1Tag id3Tag = new Id3v1Tag();

// set artist
id3Tag.Artist = "A-ha";

// set title
id3Tag.Title = "Take on me";

// update ID3v1 tag
mp3Format.UpdateId3v1(id3Tag);

// and commit changes
mp3Format.Save();