Adobe FMLE
Adobe Flash Media Live Encoder (FMLE) Configuration
After starting Adobe FMLE, on the Right Panel, make sure to choose “Output” in the “Panel Options”, then you should see a Checkbox labeled as “Stream to Flash Media Server”; when checked to be enabled, the options below will be editable.Options
- FMS URL This should be your RTMP Publish URL. i.e: rtmp://publish.foo.bar.netdna-cdn.com/live/ZONE_ID – This URL is available in the control panel in the Live Zone management.
- Backup URL Leave Blank
- Stream The name of your stream, can be anything you like (MyStream, stream, MyEvent)
Note
- The stream name must match the configuration of your flow player/video player, otherwise the viewers will see an error message.
- foo.bar.netdna-cdn.com should be changed to match your actual Live Zone name.
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://ZONE_NAME.COMPANY_ALIAS.netdna-cdn.com/live/ZONE_ID ', } } } ); </script> |