如何预交付 WMA DRM 许可证?

发布于 2024-08-02 06:16:50 字数 385 浏览 5 评论 0原文

我正在尝试以静默方式安装 WMA DRM 许可证文件,以便用户不必播放每首歌曲并确认每个许可证。

我发现我需要做这样的事情:

HRESULT res = CoCreateInstance(__uuidof(RMGetLicense),NULL,CLSCTX_ALL,__uuidof(IRMGetLicense ),(void**) &pLicense );
res = pLicense->GetLicenseFromURL(NULL, bstrURL);

bstrURL 应该包含一个 keyID 作为参数,它允许检索与音乐文件匹配的文件。我找不到如何从 WMA 文件中获取此 keyID。

不过我可能会错误地理解这个问题。我过得好吗?

I'm trying to install WMA DRM licenses files silently so that users would not have to play each song and acknowledge for each license.

I figured out that I need to do something like this :

HRESULT res = CoCreateInstance(__uuidof(RMGetLicense),NULL,CLSCTX_ALL,__uuidof(IRMGetLicense ),(void**) &pLicense );
res = pLicense->GetLicenseFromURL(NULL, bstrURL);

The bstrURL is expected to contain a keyID as a parameter, which allow to retrieve the file matching with the music file. I can't find how to get this keyID back from the WMA file.

I may get the problem wrongly though. Am I in the good way ?

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

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

发布评论

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

评论(1

找个人就嫁了吧 2024-08-09 06:16:50

您必须将标头对象作为第一个参数传递。更多信息请参见 MSDN

You have to pass header object as a first parameter. More information is in MSDN

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