Home > Back-end >  Flutter - How do I secure a video so it can only play in my App?
Flutter - How do I secure a video so it can only play in my App?

Time:06-01

I want to make an app with paid videos but I need to secure the video so it can only be played in my app and can't be played in any video app

any tips / basic examples to secure the video ? on dart flutter

CodePudding user response:

It seems that you are referring to encryption. Your videos will need to be encrypt(by your app obviously) so they could only be played by the app which have the encryption key (so your app) to decrypt them. By doing so only your app will be able to display and play the encrypted videos.

To do so you will need an encryption package like encrypt.

Other post that may help you How can I encrypt video file using Dart?.

Hope this will be useful.

  • Related