// 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();