We have a lot of WMV9 videos (something like 200k) in an network drive and around 100users. The basic permisssion is that a user can't read the video. We need to build a system where you can say that this video can be read by members of the groupe "Toto" and for the user "SpecialFonction" and that these rights can be changed.
We are considier the following scenarios :
Store the rights in a database. Create one folder per user. When a user request the video that he is allowed to see, the file is duplicate in his folder. His folder will be cleaned every week.
Build a web site that stream the videos and handles the rights. (Do you think the load will be important for the 480p?)
Encrypt all the videos on the network drive (unique key for each video). Create a WPF application that ask for the key of the video with the users credentials and handles the decryption and the decoding of the video on the fly. (we already have a WPF app for playing videos)
Store the rights in a database. Create a C# program that sync the NTFS rights on video files and the database.
Which do you think it best ? Is there other alternatives ?