Simple Flash Player for Shoutcast and Icecast
Flash Player
A Very simple Flash Player for your website. Just copy the code in your html code of your website and add your ip address and port “http://ipaddress:port” For Icecast remember add your mount point.
Shoutcast
<div id="container"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.
<a href="https://www.shoutcheap.com/shoutcast/">shoutcast</a>
<a href="https://www.shoutcheap.com/icecast/">icecast</a></div>
<script type="text/javascript" src="https://www.shoutcheap.com/flashplayer/swfobject.js"></script>
<script type="text/javascript">
var s1 = new SWFObject("https://www.shoutcheap.com/flashplayer/player.swf",
"ply","200","20","9","#FFFFFF");
s1.addParam("allowfullscreen","true");
s1.addParam("allowscriptaccess","always");
s1.addParam("flashvars",
"file=http://ipaddress:port/;stream.nsv&type=mp3&volume=50&autostart=true");
s1.write("container");
</script>
Icecast
<div id="container"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.
<a href="https://www.shoutcheap.com/shoutcast/">shoutcast</a>
<a href="https://www.shoutcheap.com/icecast/">icecast</a></div>
<script type="text/javascript" src="https://www.shoutcheap.com/flashplayer/swfobject.js"></script>
<script type='text/javascript'>
var s1 = new SWFObject('https://www.shoutcheap.com/flashplayer/player.swf',
'player',"200","20","9","#FFFFFF");
s1.addParam('allowfullscreen','true');
s1.addVariable('autostart','true');
s1.addParam('allowscriptaccess','always');
s1.addVariable('file','http://ipaddress:port/stream%3Ftype%3D.mp3');
s1.addVariable('duration','360000');
s1.addVariable('provider','video');
s1.write("container");
</script>