usmanazizgroupdocs
10/7/2016 - 9:11 AM

UpdateID3v1Tag.vb

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

' create id3v1 tag
Dim id3Tag As 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()