ID3V1

MP3RootPackage.ID3V1 property

Ottiene o imposta il tag dei metadati ID3v1. Ulteriori informazioni sono disponibili all’indirizzohttp://id3.org/ID3v1 .

public ID3V1Tag ID3V1 { get; set; }

Valore della proprietà

Il tag di metadati ID3v1 allegato al file audio.

Osservazioni

Il tag ID3(v1) è una piccola porzione di dati extra alla fine di un file MP3.

Esempi

Questo esempio di codice mostra come aggiornare il tag ID3v1 in un file MP3.

using (Metadata metadata = new Metadata(Constants.MP3WithID3V1))
{
    var root = metadata.GetRootPackage<MP3RootPackage>();

    if (root.ID3V1 == null)
    {
        root.ID3V1 = new ID3V1Tag();
    }

    root.ID3V1.Album = "test album";
    root.ID3V1.Artist = "test artist";
    root.ID3V1.Title = "test title";
    root.ID3V1.Comment = "test comment";
    root.ID3V1.Year = "2019";

    //...

    metadata.Save(Constants.OutputMp3);
}

Guarda anche