JukeBox HTML Code for website...any advice

Status
Not open for further replies.

DLambie

Posts: 82   +1
Unsure if this is an appropiate forum to put this but I am looking for a simplified HTML code to make a player to play from a list of radio stions on my website.

Here, below, is what I have sofar and plays only one radio station and I wat to be able choose from a list...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Jukebox</title>
</head>
<body>
<p style="text-align: center">
<object data="http://www.cfur.ca/high_bandwidth.m3u" type="audio/mid"
classid="6BF52A52-394A-11d3-B153-00C04F79FAA6"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715"
width="279" height="25">
<param name="src" value="http://www.cfur.ca/high_bandwidth.m3u" >
<param name="autoplay" value="false" >
<param name="autostart" value="false" >
<param name="controller" value="true" >
<param name="showcontrols" value="true" >
</object>

</body>
</html>
 
Status
Not open for further replies.
Back