Lyrics3V2
MP3RootPackage.Lyrics3V2 property
Obtiene o establece la etiqueta de metadatos Lyrics3v2.
public LyricsTag Lyrics3V2 { get; set; }
El valor de la propiedad
La etiqueta de metadatos Lyrics3v2.
Ejemplos
Este ejemplo muestra cómo actualizar la etiqueta Letras en un archivo MP3
using (Metadata metadata = new Metadata(Constants.MP3WithLyrics))
{
var root = metadata.GetRootPackage<MP3RootPackage>();
if (root.Lyrics3V2 == null)
{
root.Lyrics3V2 = new LyricsTag();
}
root.Lyrics3V2.Lyrics = "[00:01]Test lyrics";
root.Lyrics3V2.Artist = "test artist";
root.Lyrics3V2.Album = "test album";
root.Lyrics3V2.Track = "test track";
// Puede agregar un campo totalmente personalizado a la etiqueta
root.Lyrics3V2.Set(new LyricsField("ABC", "custom value"));
// ...
metadata.Save(Constants.OutputMp3);
}
Ver también
- class LyricsTag
- class MP3RootPackage
- espacio de nombres GroupDocs.Metadata.Formats.Audio
- asamblea GroupDocs.Metadata