Hello All,
I need a small help. I have an application built in php which stores images and videos as in gallery. A user can click on the video , it will play as in streaming way. This part is ok. now, we have a limitation that we cannot play .vob files using our embedded player. so I just put an href tag to the location of that video thus user can download/play according to the client browser settings. this is again ok. but the issue arise , when I go for seeing source code. since href is a direct url , it shows complete path of video including all dir which is not good for security.. I am just wondering, how can I mask this?
I know URL encoding but issue is
my code for external client side video play is like this
Syntax: [ Download ] [ Hide ]
<a href ="/rootfolder/videofolder/video.vob"></a>
. from my knowledge href tag only accept non-formatted values right?/ I mean can I put some thing like this ??
<a href="#8743854358jsdsad76as"></a>.. I dont think so...am I so dump?:D
okies.. my requirement is , when client go for seeing source code, the source url of video should be masked/encrypted....any help???/
thanx