Leggere tag MP3 in VB.NET

Mattepuffo's logo
Leggere tag MP3 in VB.NET

Leggere tag MP3 in VB.NET

Quello che vogliamo fare è leggere i tag MP3 di un brano musicale.

Se vogliamo farlo in VB.NET possiamo usare la libreria TagLibSharp!

La potete installare tramite NuGet.

Come potete vedere è possibile anche modificare tag; e non è solo relativo agli MP3.

Detto ciò ecco un esempio:

Imports TagLib

Module Program

    Sub Main(args As String())

        Dim desktop As String = "C:\Users\Pc\Desktop\"
        Dim file As String = desktop + "2 times.mp3"

        Dim tagFile = TagLib.File.Create(file)
        Dim duration = tagFile.Properties.Duration

        Console.WriteLine(tagFile.Tag.Title)
        Console.WriteLine(duration)

    End Sub

End Module

Enjoy!


Condividi

Commentami!