在哪里可以找到标签库的清晰示例?

发布于 2024-10-05 19:43:27 字数 126 浏览 1 评论 0原文

我一直在为我的音乐管理器项目寻找 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤芳又自赏 2024-10-12 19:43:27

好吧,在不确切知道你想要做什么的情况下,我所能提供的就是我的代码。

您可以从实际的 mp3 文件创建一个 TagLib File 对象。这将读取文件并提取标签数据:

TagLib.File tagFile = TagLib.File.Create(track); // track is the name of the mp3

然后获取标签值:

uint year = tagFile.Tag.Year;

您可以像这样设置标签:

tagFile.Tag.Year = year;

然后保存更改:

tagFile.Save();

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:

TagLib.File tagFile = TagLib.File.Create(track); // track is the name of the mp3

Then to get a tag value:

uint year = tagFile.Tag.Year;

You set the tags like this:

tagFile.Tag.Year = year;

and then save the changes:

tagFile.Save();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文