TagLib# Windows 发行版?或者另一个好的 ID3 阅读器?
我想编写一个快速程序,使我的 MP3 文件的文件组织重新与 ID3 标签中的信息同步...
我曾尝试获取 Windows Media Format SDK,但当我去安装时,它说它可以只能在WinXP上运行。我发现这里有人建议 TagLib#,从代码示例来看,它看起来非常好。问题是官方网站似乎已经消失,而且我发现的 Novell 服务器上的托管的其他链接也已关闭。
有人知道我还能在哪里获得适用于 Windows 的 C#/VB.NET 的 TagLib# 发行版吗?或者另一个好的 ID3 标签阅读器?
I wanted to write a quick program to get the file organization of my MP3 files back into sync with the info in my ID3 tags...
I had tried to get the Windows Media Format SDK, but when I go to install it says it can only run on WinXP. I found someone on here suggest TagLib#, which looked REALLY good, from the code examples. Problem is it seems the official site is gone, and the other links I've found to a hosting on Novell's servers is also down.
Anyone know where I can still get a distro of TagLib# for C#/VB.NET for Windows? Or another good ID3 tag reader?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议使用 NuGet 安装 taglib-sharp。 NuGet 是在 Visual Studio 中使用开源库的最佳且最简单的方法。
要安装 TagLib#,请在 Visual Studio 的包管理器控制台中运行以下命令。
taglib-sharp 的 NuGet 发行版可以在 http://nuget.org/packages/taglib 中找到。
官方源代码存储库位于 https://github.com/mono/taglib-sharp。
I would recommend installing taglib-sharp with NuGet. NuGet is the best and easiest way to use opensource libraries in Visual Studio.
To install TagLib#, run the following command in the Package Manager Console in Visual Studio.
The NuGet distribution of taglib-sharp can be found at http://nuget.org/packages/taglib.
The official source code repository is at https://github.com/mono/taglib-sharp.
您可以在此处下载源代码和 DLL: http://download.banshee.fm/taglib-sharp/2.0.4.0/taglib-sharp-2.0.4.0-windows.zip
您可以检查http://download.banshee.fm/taglib-sharp/ 查看最新版本。
You can download the source and DLL here: http://download.banshee.fm/taglib-sharp/2.0.4.0/taglib-sharp-2.0.4.0-windows.zip
You can check http://download.banshee.fm/taglib-sharp/ to see the latest version.
您可以从 http://anonsvn.mono- 进行代码的 svn 签出project.com/source/trunk/taglib-sharp。
You can do an svn checkout of the code from http://anonsvn.mono-project.com/source/trunk/taglib-sharp.