Posted on: 2/15/2014 8:25:35 PM | Views : 618

I can embed a streaming video link to flash player by adding controls to panel at run time. The player embed  and played successfully but My video links ( which is named as ChannelLink in below code) are exposed to user easily by Inpecting html source code in flash player tags. I don't want to show the links and that would be re-use easily. So please help me how to secure flash player src links.
Panel1.Controls.Add(new LiteralControl("<object width=\"100%\" height=\"100%\">")); Panel1.Controls.Add(new LiteralControl("<param name=\"movie\" value=\"http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf\"></param>")); Panel1.Controls.Add(new LiteralControl("<param name=\"flashvars\" value=\"src=" + ChannelLink+ "&controlBarMode=floating& ...

Go to the complete details ...