Hi,
we are doing live streaming with FMS3. Adobe test app works ok, but JWPlayer 4.1 doesn't. I think we have something configured wrong. Our SWFobject looks like this: (we have VOD working ok on same server)
fms_server.com is the address of FMS server (replaced with bogus)
live is the name of application
live_stream_name is the name of stream.
this would equal to rtmp://fms_server.com/live/live_stream_name in adobe test swf, which works ok.
function createPlayer()
{
var so = new SWFObject('player.swf','mpl','320','240','8');
so.addVariable('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addVariable('flashvars','&file=live_stream_name&streamer=rtmp://fms_server.com/live&controlbar=over');
so.write('player');
};
any suggestions?
so.addVariable('file', 'live_stream_name');so.addVariable('streamer', 'rtmp://fms_server.com/live');
so.addVariable('type', 'video');
so.addVariable('controlbar', 'over');
Good Luck! :)