如何使用 TagLib-Sharp 编写自定义 (PRIV) ID3 帧?

发布于 2024-12-25 18:56:43 字数 194 浏览 0 评论 0原文

具体来说,我想编写 Windows Media Player 框架,例如 WM/MediaClassPrimaryIDWM/MediaClassSecondaryIDWM/WMCollectionGroupID 框架。

我正在使用 PowerShell,但 C# 也不错。

Specifically, I'd like to write the Windows Media Player frames, such as theWM/MediaClassPrimaryID, WM/MediaClassSecondaryID and WM/WMCollectionGroupID frames.

I'm using PowerShell, but C# would be good too.

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

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

发布评论

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

评论(1

命比纸薄 2025-01-01 18:56:43

我有点生疏了,但以下内容应该大部分是正确的。我记得这些标签是 UTF-16,但您可能想要获取现有标签并尝试使用 Unicode 编码器解码其值以确保确定。

// Get or create the ID3v2 tag.
TagLib.Id3v2.Tag id3v2_tag = file.GetTag(TagLib.TagTypes.Id3v2, true);

if(id3v2_tag != null) {
    // Get the private frame, create if necessary.
    PrivateFrame frame = PrivateFrame.Get(id3v2_tag, "WM/MediaClassPrimaryID", true);

    // Set the frame data to your value.  I am 90% sure that these are encoded with UTF-16.
    frame.PrivateData = System.Text.Encoding.Unicode.GetBytes(value);
}

I'm a bit rusty, but the following should be mostly correct. I remember these tags being UTF-16 but you'll probably want to get an existing tag and try decoding its value with the Unicode encoder to be sure.

// Get or create the ID3v2 tag.
TagLib.Id3v2.Tag id3v2_tag = file.GetTag(TagLib.TagTypes.Id3v2, true);

if(id3v2_tag != null) {
    // Get the private frame, create if necessary.
    PrivateFrame frame = PrivateFrame.Get(id3v2_tag, "WM/MediaClassPrimaryID", true);

    // Set the frame data to your value.  I am 90% sure that these are encoded with UTF-16.
    frame.PrivateData = System.Text.Encoding.Unicode.GetBytes(value);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文