- 授权协议: Apache
- 开发语言: C# .NET
- 操作系统: Windows
- 软件首页: http://id3.codeplex.com/
软件介绍
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); } }
The Mechanics of Web Handling
David R. Roisum
This unique book covers many aspects of web handling for manufacturing, converting, and printing. The book is applicable to any web including paper, film, foil, nonwovens, and textiles. The Mech......一起来看看 《The Mechanics of Web Handling》 这本书的介绍吧!
