MyBB Community Forums

Full Version: Web based media player for shoutcast
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am looking for a tutorial or site that can help me make my own media player controls. The embedded media player will be playing a shoutcast internet radio stream.

What I want to be able to do is in html, make an image be able to control a media player function, So I will have a play button, Pause, Vol up and vol down. I have tried google search and have not found what I need Sad

I know you can use flash players, But I have been told that radios streaming at a high bit rate can cause distortion in the music.

I know that a lot of Habbo Fansites all have radios, with really nice players.. An example is here http://www.clubhabbo.net/

Looking at that source code I see
<a href="#" onclick="ClubHabbo.mutePlayer(); return false;"><img src="/images/pics/icon_stop.gif" id="mute" alt="Stop Radio" /></a> 
<a href="#" onclick="statsReload.stop(); statsReload.start(); return false;"><img src="/images/pics/icon_refresh.gif" alt="Refresh Stats" /></a> 
<a href="#" onclick="popUp('/radio/popup.html'); return false;"><img src="/images/pics/icon_popup.gif" alt="Pop-up Window" border="0"></a> 

This is exactly what I want, I can only assume that the onclick commands are control a windows media player embedded in the site Confused?