Cross-post http://perlmonks.org/?node_id=979815
In my server we are streaming videos using lighttpd . Right now everyone who has the link to the video is able to stream the video and see. I want to assure security of the videos so that not everyone can watch the videos. I am thinking about creating a user specific and video specific md5sum which could be send along with url so that only video stream for that particular url request.
For example
Let us assume that now everyone can see the video in the following link
http:/xyz.com/musiv-video/video.mp4
According to my logic the following url should only stream videos
http:/xyz.com/musiv-video/video.mp4?md5=202cb962ac59075b964b07152d234b70&id=62485
I need to get the requested URL so that i could verify the requested URL has the correct md5sum which makes the user watch the video. If it does not have the correct parameters then i should not allow the video to stream.
Any suggestions. Thanking you in advance.