I have an app that download a video from ftp then save on sd card in encrypted form , when user want to see that videos , then it decrp开发者_开发技巧ted and then showing but i have a problem with that is takes long dely on decrption. Is there any way to play a video like live streaming when it is in decrption process.
To implement your streaming scheme, you need two main components: a streaming server such as a local http instance and a javax.crypto.CipherInputStream. LocalSingleHttpServer is an example of that kind of implementation.
精彩评论