
jwplayer shortcode for shoutcast streaming .m3u
Well I have the HTML that does work, but now I want to use the jqplayer wordpress plugin for the streaming. I use this code
bc.. [jwplayer type="audio" file="http://xx.xx.xx.xxx:8002/;/stream.m3u" streamer="http://xx.xx.xx.xxx:8002" provider="rmtp" html5_file="http://xx.xx.xx.xxx:8002/;/stream.m3u"]
And the page where it is live:
http://bit.ly/P9ltgF
Normally everything works like in this HTML:
bc.. <script type="text/javascript">
var s1 = new SWFObject('http://www.xxxxxxxxxxx.xxx/jwplayer/player.swf','player','560','24','8');
s1.addParam('allowfullscreen','false');
s1.addParam('allowscriptaccess','always');
s1.addVariable('file','http://xx.xx.xx.xxx:8002/;/stream.m3u');
s1.addVariable('type','sound');
s1.addVariable('backcolor','ffffff');
s1.addVariable('frontcolor','ff005a');
s1.addVariable('lightcolor','161616');
s1.addVariable('screencolor','000000');
s1.addVariable('autostart','true');
s1.write('playercontainer');
</script>
<div class="" id="playercontainer"></div>
Could some one help me to tell me what I have to change in de settings or shortcode?