如何预交付 WMA DRM 许可证?
我正在尝试以静默方式安装 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将标头对象作为第一个参数传递。更多信息请参见 MSDN
You have to pass header object as a first parameter. More information is in MSDN