如何在 C# 中读取 ID3 标签并将其写入 MP3?

发布于 2024-08-12 02:55:40 字数 1539 浏览 5 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

回眸一笑 2024-08-19 02:55:40

Taglib# 是最好的。它是 TagLib C 库到 C# 的直接移植。

要安装 TagLib#,请在 Visual Studio 的包管理器控制台中运行以下命令。

PM> Install-Package taglib

taglib-sharp 的 NuGet 发行版可以在 http://nuget.org/packages/taglib 中找到。
官方源代码存储库位于 https://github.com/mono/taglib-sharp

这是使用该库的示例:

TagLib.File file = TagLib.File.Create("mysong.mp3");
String title = file.Tag.Title;
String album = file.Tag.Album;
String length = file.Properties.Duration.ToString();

Taglib# is the best. It's direct port of the TagLib C library to C#.

To install TagLib#, run the following command in the Package Manager Console in Visual Studio.

PM> Install-Package taglib

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.

Here's an example using the library:

TagLib.File file = TagLib.File.Create("mysong.mp3");
String title = file.Tag.Title;
String album = file.Tag.Album;
String length = file.Properties.Duration.ToString();
童话里做英雄 2024-08-19 02:55:40

我个人从这里使用过ID3.Net

http://id3dotnet.sourceforge.net/

以及来自此处的 UltraID3Lib

http://home。 fusion.net/honnert/hundred/

两者都很好地完成了工作,并且从 API 的角度来看都很易于使用。

I've personally used ID3.Net from here:

http://id3dotnet.sourceforge.net/

As well as UltraID3Lib from here:

http://home.fuse.net/honnert/hundred/

Both did the job well and were easy to use from an API standpoint.

你的他你的她 2024-08-19 02:55:40

这是一个为执行此操作而编写的 sourceforge 项目,并且似乎有一些不错的评论:

http://csid3lib.sourceforge.net /

我只读过 ID3 标签,从未编写过它们,所以我无法对此进行具体评论。然而,我相信这个项目(在更早的阶段)是我曾经做过的。

Here's a sourceforge project that's been written to do this and seems to have some good reviews:

http://csid3lib.sourceforge.net/

I've only ever read ID3 tags, never written them, so I can't comment specifically on that. However, I believe this project (in a much earlier stage) was what I used to do it.

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