flv 文件的安全流式传输
我想使用 Flex 中的自定义播放器通过 http 播放 flv 文件。 由于盗版原因,必须确保视频内容的安全。我们的想法是加密 flv 文件的字节数组,并在播放器中使用 Flex 中的 NetStream 类对其进行解密。
问题是 Netstream 类需要使用appendBytes() 附加完整的字节数组,但文件的大小很大,因此它不是有效的方法。
我想跳过流开头的几个字节(附加在服务器上)并播放视频。
请建议一种方法。
I want to play a flv file over http using a custom player in flex.
The video content has to be made secure due to piracy reasons. Our idea is to encrypt the byte array of the flv files and decrypt it in the player using NetStream class in Flex.
The problem is that Netstream class requires the complete byte array to be appended using appendBytes() but th size of the file is huge so its not a valid approach.
I want to skip a few bytes in the beginning of the stream(appended at the server) and play the video.
Kindly suggest an approach.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您希望它的安全程度。通常情况下,通过某种身份验证通过 https 进行操作就足够了。如果您真的很偏执,您可能想看看 Adobe 的 DRM 解决方案 Adobe Pass。
It depends how secure you want it to be. Normally just doing it over https should be good enough with some sort of authentication. If you're really paranoid, you might want to look at Adobe's DRM solution, Adobe Pass.