是否可以渐进式播放 DRMed 曲目
是否可以合法地渐进式播放从 HTTP 链接下载的 Windows Media DRM 曲目?
我已经成功地在没有 DRM 的情况下做到了这一点,但这里有人告诉我这是不可能的。 这是真的?
如果是的话,需要使用哪些库或技术?
Is it possible to legally progressive play Windows Media DRM tracks as they are downloaded from a HTTP link?
I've managed to do this without DRM but someone here told me it wasn't possible with DRM. Is this true?
And if so with what set of libraries or technologies?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我很确定这是可能的,而且也不违法。 通常,有关内容加密的信息和实际加密内容分开保存在同一容器中。 也就是说,元数据未加密,但内容已加密。 为了支持渐进式下载,内容通常以小的可传输有序块进行加密。 您的 DRM 客户端使用元数据来定位许可证服务器,然后从许可证服务器获取许可证和内容密钥。 接下来,您的客户端“逐块”下载内容,解密每个块,并在下载时将其呈现为电影。
有关 SDK 的信息,请在此处查看不同的组件。
I'm pretty sure it's possible and not illegal either. Normally, information about content encryption and actual encrypted content is kept separate in the same container. That is to say, metadata is not encrypted but content is. To support progressive download, the content is normally encrypted i small transferable ordered chunks. Your DRM client uses the metadata to locate a license server, next a license and content key is acquired from the license server. Next, your client downloads the content "chunk-per-chunk" ,decrypts each chunk, and renders it as a motion picture while it is downloading.
For information on SDK's, check out the different components here.
是的。
Yes it is.