.NET的ID3库 ID3.NET

码农软件 · 软件分类 · 多媒体处理 · 2019-09-14 10:14:33

软件介绍

ID3.NET 是一组用来从 MP3 文件中读取、修改和写入 ID3 和 Lyrics3 信息的 .NET 库。要求 .NET Framework 4 或者更高版本支持,支持 Windows Phone 7 和 Metro。

示例代码:

string[] musicFiles = Directory.GetFiles(@"C:\Music", "*.mp3");
foreach (string musicFile in musicFiles)
{
    using (var mp3 = new Mp3File(musicFile))
    {
        Id3Tag tag = mp3.GetTag(Id3TagFamily.FileStartTag);
        Console.WriteLine("Title: {0}", tag.Title.Value);
        Console.WriteLine("Artist: {0}", tag.Artists.Value);
        Console.WriteLine("Album: {0}", tag.Album.Value);
    }
}

本文地址:https://codercto.com/soft/d/14565.html

BSD Hacks

BSD Hacks

Dru Lavigne / O'Reilly Media, Inc. / 2004-05-24 / USD 24.95

If you want more than your average BSD user--you want to explore and experiment, unearth shortcuts, create useful tools, and come up with fun things to try on your own--BSD Hacks is a must-have. This ......一起来看看 《BSD Hacks》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码