
Using JWPlayer with Broadcam server flash player stream possible?
I have a live video feed using the Broadcam video server. It works "some" of the time but the Flash Player is ugly and un-customizable. JWPlayer seems a much better solution?
Currently I am using the javascipt below to embedded it (and this works a lot of the time), but I an having a hard time figuring out how to make JWPlayer use this. I know the scope is "BoardCam" and the streamName is "live" and these two things are all you need to know (in theory) to play a flash stream? Can anyone help with how to embed JWPlayer to use this same stream? Any assistance would be much appreciated.
<script type="text/javascript">
var flashvars = {
'provider': 'rtmp',
'host': 'myhost.no-ip.biz:1935',
'scope': 'BroadCam',
'streamName': 'live',
'bandwidth': '1',
'src': '1',
'autostart': 'true',
'image': 'http://myhost.no-ip.biz:1935/start_frame.jpg'
};
var params = {
'allowfullscreen': 'false',
'quality': 'high',
'allowscriptaccess': 'always'
};
var attributes = {
'id': 'player1',
'name': 'player1'
};
swfobject.embedSWF('nchplayer.swf', 'mediaplayer', '750', '500', '9', 'false',
flashvars, params, attributes);
</script>