具有流访问解密功能的 C# 视频播放器组件
我正在寻找一个视频播放器组件(Windows),可在.Net(C#)中使用。所需要的是对底层流的访问,因为视频的部分内容应该即时解密,并且解密的视频不应该存储在硬盘上。理想情况下,它还应该适用于 Linux 和 Mac。
有人知道一些符合要求的优秀视频组件吗?
谢谢!
I am searching for a video player component (windows), usable in .Net (C#). What is required, is an access to the underlying stream, because parts of the video should be decrypted on the fly, and the decrypted video should never be stored on the hard disk. Ideally, it should also be portable for Linux and Mac.
Anyone knows some good video components featuring the requirements?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了该问题的两个解决方案,因为我找不到足够灵活的组件。
以下是解决方案:
1. 自定义视频播放器,由解复用器+解码和渲染组成(例如 directx 或 opengl)。
2.带有解密层的虚拟硬盘,我们基于dokan vhdd驱动实现了这个解决方案。
Found two solutions for the problem, since I could not find a component flexible enough.
Here are the solutions:
1. A custom video player, composed of demux+decode and a rendering (to directx or opengl for example).
2. A virtual hard disk with a decryption layer, we implemented this solution, based on dokan vhdd driver.