Hello,
We have a FMS setup and I found this player perfect match for video streaming. My main concern is this now though, we have limited bandwidth so I had to pull a environment variable through vbscript and turn it into a variable to be passed into Flash, and then that variable is part of the vhost on our FMS that helps limit the bandwidth.
My question is this, can I pass this variable into jwplayer and have it link up to one of our vhosts still?
To hopefully better understand this, this is the vital piece in Flash that we used to link the flashvar to our vhost.
data:"rtmp://fms"+Num+"/myapps/"+item.attribute("src").toXMLString()});
Num is the flashvar.
Thanks



@Alex -
I think the way to do this would be to generate the "streamer" option through JavaScript and pass it into the player that way. There's no way to configure the player to insert a flashvar into the streamer.
Example, using SWFObject:
<script type="text/javascript">swfobject.embedSWF('player.swf', 'player', '560', '300', '7.0.0', 'expressInstall.swf',
{
file: '/path/to/file.mp4',
streamer: 'rtmp://fms'+Num+'/myapps/',
provider: 'rtmp'
},
params,
attributes
);
</script>