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

时间:2012-01-09 18:57:26

标签: taglib-sharp

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

我使用PowerShell,但C#也会很好。

1 个答案:

答案 0 :(得分:3)

我有点生疏,但以下几点应该是正确的。我记得这些标签是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);
}