在哪里可以找到标签库的清晰示例?
我一直在为我的音乐管理器项目寻找 ID3 编辑器。看来 taglib Sharp 是流行的选择。我用谷歌搜索了很多,但找不到任何使用它的例子。
有人可以给我指出一些显示库使用情况的示例吗?
I have been searching for ID3 editors for my music manager project. It seems that taglib sharp is the popular choice. I googled a lot and could not find any examples of using it.
Can some one point me to some examples showing the library usage ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,在不确切知道你想要做什么的情况下,我所能提供的就是我的代码。
您可以从实际的 mp3 文件创建一个
TagLib
File 对象。这将读取文件并提取标签数据:然后获取标签值:
您可以像这样设置标签:
然后保存更改:
Well without knowing exactly what you want to do all I can offer is my code.
You create a
TagLib
File object from the actual mp3 file. This reads the file and extracts the tag data:Then to get a tag value:
You set the tags like this:
and then save the changes: