Lyrics3 Tag is a chunk of data which begins with “LYRICSBEGIN”, ends with “LYRICSEND” and has the lyrics between these keywords. This data block is then saved in the audio file between the audio and the ID3 tag. If no ID3 tag is present one must be attached.
Note
For more information, please visit: http://id3.org/Lyrics3
Reading a Lyrics tag
The GroupDocs.Metadata API allows reading the Lyrics3 tag in an MP3 file.
using(Metadatametadata=newMetadata(Constants.MP3WithLyrics)){varroot=metadata.GetRootPackage<MP3RootPackage>();if(root.Lyrics3V2!=null){Console.WriteLine(root.Lyrics3V2.Lyrics);Console.WriteLine(root.Lyrics3V2.Album);Console.WriteLine(root.Lyrics3V2.Artist);Console.WriteLine(root.Lyrics3V2.Track);// ...// Alternatively, you can loop through a full list of tag fieldsforeach(varfieldinroot.Lyrics3V2.ToList()){Console.WriteLine("{0} = {1}",field.ID,field.Data);}}}
Updating a Lyrics tag
The GroupDocs.Metadata API supports updating the Lyrics tag in an MP3 audio file.
The following are the steps to update the Lyrics tag in an MP3 file.
using(Metadatametadata=newMetadata(Constants.MP3WithLyrics)){varroot=metadata.GetRootPackage<MP3RootPackage>();if(root.Lyrics3V2==null){root.Lyrics3V2=newLyricsTag();}root.Lyrics3V2.Lyrics="[00:01]Test lyrics";root.Lyrics3V2.Artist="test artist";root.Lyrics3V2.Album="test album";root.Lyrics3V2.Track="test track";// You can add a fully custom field to the tagroot.Lyrics3V2.Set(newLyricsField("ABC","custom value"));// ...metadata.Save(Constants.OutputMp3);}
Removing a Lyrics tag
To remove the Lyrics tag from an MP3 audio just assign null to the MP3RootPackage.Lyrics3V2 property. The code sample below shows how to remove the Lyrics tag from an MP3 file.
Along with full featured .NET library we provide simple, but powerful free Apps.
You are welcome to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free online Free Online Document Metadata Viewing and Editing App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.