Hi there!
I'm currently using the latest version of JW player. But the live stream plugin for reconnecting doesn't work.
I'm using the following code:
<script type="text/javascript">
var so = new SWFObject('player.swf',
'mpl','400','320','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','plugins=livestream-1&autostart=true&file=livestream&provider=rtmp&streamer=rtmp://192.168.0.6/live');
so.write('mediaspace');
</script>
When I use the examples codes described in the plugin page:
<script type="text/javascript">
var so = new SWFObject('player.swf',
'mpl','400','320','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','plugins=livestream-1&livestream.file=livestream&provider=rtmp&livestream.streamer=rtmp://192.168.0.6/live');
so.write('mediaspace');
</script>
It won't connect at all. Am I doing something wrong?
Perhaps it's better to do this with some javascripting going forward than with the livestream plugin. There's some severe limitations to how the livestream plugin does it (it's basically trying to catch errors). Our new javascript API should be able to do this (and more) in a way that's easy to modify by publishers.
Can you tell me what functionalities you expect from the livestream plugin? For example:
* try to reconnect on pause
* set a "coming soon" screen before the event starts
* set a "thans for watching" screen after the event ends
The more (specific) info you can give, the better!