ID3标签提取
在windows和android环境下如何从mp3文件中提取ID3标签中嵌入的信息?
How can i extract the information embedded in ID3 tag from mp3 file in windows and android environment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 id3lib for ac/c++ 库和 jid3lib 用于 Java 库,Android 需要它。
对于 .NET 开发,我建议使用 TagLib#。要引用和使用 TagLib# 库,您需要在 Visual Studio 的包管理器控制台中运行以下命令。
taglib-sharp 的 NuGet 发行版可以在 http://nuget.org/packages/taglib 找到。官方源代码存储库位于 https://github.com/mono/taglib-sharp 。
Check out id3lib for a c/c++ library and jid3lib for a library in Java, which you will need for Android.
For .NET development I would recommend using TagLib#. To reference and use the TagLib# library you need to 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.