Leggere tag MP3 in C#
Quello che vogliamo fare è leggere i tag MP3 di un brano musicale.
Se vogliamo farlo in C# 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:
using TagLib;
namespace TestCsharpConsole
{
class TestClass
{
static void Main(String[] arg)
{
var desktop = @"C:\Users\Pc\Desktop\";
var file = desktop + "2 times.mp3";
var tagFile = TagLib.File.Create(file);
var duration = tagFile.Properties.Duration;
Console.WriteLine(tagFile.Tag.Title);
Console.WriteLine(duration);
}
}
}
Ejoy!
c# nuget taglibsharp mp3
Commentami!