WireCast
WireCast Configuration
Start WireCast normally, and queue your streaming files in the WireCast queue area at the bottom. Then from the menu bar, click on “Broadcast”, then select “Broadcast Settings”Options
- Encoder Preset Choose “Flash High Bandwidth” or any bandwidth that fits your Internet
- Destination RTMP Flash Server
- Address (This should be your RTMP Publish URL i.e: rtmp://publish.foo.bar.netdna-cdn.com/live/ZONE_ID – This URL
- Stream The name of your stream, can be anything you like (MyStream, stream, MyEvent)
- User Agent Leave default or select any one you like
Note
If you disconnect your stream, you may not be able to connect again as the socket connection between WireCast and our server will remain open for a while. You may need to exit WireCast and wait for a little bit (2-3 minutes) and start streaming again.Flowplayer Configuration
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<script type="text/javascript" src="/flowplayer-3.1.4.min.js"></script> <div class="pageultype1sub1"><a style="display:block;width:720px;height:540px;" id="player1"></a></div> <!-- this will install flowplayer inside previous A- tag. --> <script type="text/javascript"> flowplayer("player1", "/flowplayer-3.1.4.swf", { clip: { url: 'The Name Of your Stream', live: 'true', autoplay: 'true', provider: 'rtmp', }, plugins: { rtmp: { url: '/flowplayer.rtmp-3.1.3.swf', netConnectionUrl: rtmp://publish.ZONE_NAME.COMPANY_ALIAS.netdna-cdn.com/live/ZONE_ID ', } } } ); </script> |