So i use flowplayer to play rtmp streams, but currently the web view of the stream displays the stream "key" or url.
When this is true, other users will be able to "take over" the stream , which we dont want.. So i need to be able to hide the "key" or url in the web code. I dont want any authentication as many comon RTMP streamer programs dont support that when streaming.
And before you say, then i alreade have looked at http://flash.flowplayer.org/demos/plugins/streaming/secure-streaming.html but i cant get it to work with RTMP streaming only a fixed .flv stream...
here is my code btw:
<a
style="display:block;width:960px;height:540px;margin:10px auto"
id="stream">
</a>
<script type="text/javascript">
flowplayer("stream", "http://xxx.net/live/files/flowplayer-3.2.15.swf",
{
clip: {
url: 'stream name url key goes here',
live: true,
provider: 'rtmp'
},
plugins: {
rtmp: {
url: 'http://xxx.net/live/files/flowplayer.rtmp-3.2.11.swf',
netConnectionUrl: 'rtmp://xxx.net/live'
}
}
}
);
</script>