Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个应用程序,它从 ftp 下载视频,然后以加密形式保存在 sd 卡上,当用户想要查看该视频时,它会解密然后显示,但我有一个问题,那就是解密需要很长时间。在解密过程中,有什么方法可以播放像直播这样的视频。
要实现您的流式传输方案,您需要两个主要组件:一个流式服务器(例如本地 http 实例)和一个 javax.crypto.CipherInputStream。LocalSingleHttpServer 就是这种实现的一个例子。