I am using the ASP.NET Futures Media control to stream video/audio. Everything works fine if I pass in a proper web url for playback.
The media files are hidden in my server to prevent anonymous downloads. I have a download page that serve users the media files provided they are properly authenticated. The end point is, the media files are not publicly accessible. The files are stored outside the public web folders in my server's local file system.
Unfortunately, this is also preventing me from passing in a url that the media player control can load. I understand the actual media player will load client side and its access is limited to whatever the client can view.
Is there anyway to pass in a media stream to the control or just about any workaround/solution? I read a bit on asx streaming but from my quick reading, it looks like you need a media streaming daemon on the server, etc and I really don't want to go into all the trouble. Is there anyway I can write my own simple asx streamer?
Any help (even the tiniest hint) is greatly appreciated!