Secure Streaming
Flowplayer Secure Streaming
Below is an example of a standard Flowplayer installation at 640×480 using RTMP through our Wowza Media Server installation
Anycast Video #1
Source Code
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<div class="pageultype1sub1"><a href="video.flv" style="display:block;width:560px;height:400px;" id="player1"><img style="display:block;width:640px;height:480px;" src="http://www.flowplayer.org/img/home/flow_eye.jpg" alt="Search engine friendly content" /></a></div> <script type="text/javascript"> flowplayer("player1", "/flowplayer/flowplayer-3.2.1-dev.swf", { clip: { provider: 'rtmp', connectionProvider: 'secure' }, plugins: { rtmp: { url: '/flowplayer/flowplayer.rtmp-3.2.0.swf', netConnectionUrl: 'rtmpte://secure01.hddn.com:1935/hddn/' }, secure: { url: '/flowplayer/flowplayer.securestreaming-3.2.0.swf', token: escape('#ed%h0#w@1') } } }); </script> |
Anycast Video #2
Source Code
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<div class="pageultype1sub1"><a href="Extremists.flv" style="display:block;width:640px;height:480px;" id="player2"><img style="display:block;width:640px;height:480px;" src="http://www.flowplayer.org/img/home/flow_eye.jpg" alt="Search engine friendly content" /></a></div> <script type="text/javascript"> flowplayer("player2", "/flowplayer/flowplayer-3.2.1-dev.swf", { clip: { provider: 'rtmp', connectionProvider: 'secure' }, plugins: { rtmp: { url: '/flowplayer/flowplayer.rtmp-3.2.0.swf', netConnectionUrl: 'rtmpte://secure01.hddn.com:1935/hddn/' }, secure: { url: '/flowplayer/flowplayer.securestreaming-3.2.0.swf', token: escape('#ed%h0#w@1') } } }); </script> |
