-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaylist.html
207 lines (187 loc) · 8.53 KB
/
playlist.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<html>
<head>
<title>will music</title>
<link rel="icon" href="images/iheart.png">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
const IHEART = "https://stream.revma.ihrhls.com/";
const RADIOPARADISE = "http://stream-dc1.radioparadise.com/";
var stations =
[
{type: "iheart", code:"zc8143", title:"Breeze", color:"DeepSkyBlue" },
{type: "iheart", code:"zc3949", title:"Pride", color:"DarkOrchid" },
{type: "iheart", code:"zc4422", title:"Hits", color:"yellow" },
{type: "iheart", code:"zc4409", title:"80s to Today", color:"LawnGreen" },
{type: "iheart", code:"zc8478", title:"2010's", color:"#698B69" },
{type: "iheart", code:"zc6850", title:"2000's", color:"#8B5A00" },
{type: "iheart", code:"zc6834", title:"90's", color:"Gainsboro" },
{type: "iheart", code:"zc5060", title:"80's", color:"#FFC125" },
{type: "iheart", code:"zc6437", title:"90's Alternative", color:"#D1EEEE" },
{type: "iheart", code:"zc6788", title:"Reggae", color:"#1E90FF" },
{type: "iheart", code:"zc7078", title:"Classic Rock", color:"#97FFFF" },
{type: "iheart", code:"zc6878", title:"Vinyl Classic Rock", color:"#F5F5DC" },
{type: "iheart", code:"zc6377", title:"Classical", color:"#B0C4DE" },
{type: "iheart", code:"zc4717", title:"Real Oldies", color:"#8B795E" },
{type: "iheart", code:"zc4439", title:"Cool Oldies", color:"#FF1493" },
{type: "iheart", code:"zc4242", title:"Jazz", color:"#EED5D2" },
{type: "iheart", code:"zc6221", title:"Beach", color:"#7FFFD4" },
{type: "iheart", code:"zc6148", title:"Hawaii", color:"OliveDrab" },
{type: "iheart", code:"zc4719", title:"R&B", color:"lavender" },
{type: "iheart", code:"zc6137", title:"Christmas Classics", color:"#00FA9A" },
{type: "iheart", code:"zc4596", title:"Christmas Favs", color:"#FF3030" },
{type:"rp", code:"mellow-flac", title:"Radio Paradise-Mellow", color:"#223030" },
{type:"rp", code:"flac", title:"Radio Paradise-Main", color:"#222230" }
];
function changeStation(sURL, xStation)
{
xStation = xStation ? xStation : 0;
document.body.style.backgroundColor=stations[xStation].color;
document.all.statName.innerHTML = stations[xStation].title;
document.all.source1.src = sURL;
document.all.player.load();
//setTimeout(startPlayingWait, 2000);
document.all.player.play()
//TODO: get the iframe to start playing
//document.all.bam.play();
//document.all.bam.onload = startPlaying;
}
function startPlayingWait()
{
//alert("start playing")
//document.all.bam.
document.all.player.play();
}
function main()
{
for(var x=0; x < stations.length; x++)
{
var sURL = "";
if(stations[x].type=="rp")
{
sURL = RADIOPARADISE + stations[x].code;
}
else //type will be iheart
{
sURL = IHEART + stations[x].code;
}
/* TODO - figure out autoplay
// NOT NEEDED WHEN we just use the default URL in the source1
if(x==0)
{
//changeStation(sURL, 0);
}
*/
$('#stationList').append('<li><a href="#" onclick=\"changeStation(\''+sURL+'\','+x+')\">#EXTINF:0,' + stations[x].title+'<br>'+sURL+'</li>');
}
//changeStation2(0);
}
</script>
</head>
<body style="background-color:lightblue; a{cursor: pointer; }" onload="main()">
<H3 id="statName"></H3>
<video controls="" allow="autoplay" autoplay="" name="media" id="player"><source id="source1" src="https://n3cb-e2.revma.ihrhls.com/zc6850" type="audio/aac"></video>
<ul id="stationList">
</ul>
</body>
<!--
<video controls="" autoplay="" name="media"><source src="https://n3cb-e2.revma.ihrhls.com/zc6137?rj-ttl=5&rj-tok=AAABhJLAxHIAQxqvoUu5vJBKpw" type="audio/aac"></video>
different URL's
n23a-e2.revma.ihrhls.com
n11a-e2.revma.ihrhls.com
n0ba-e2.revma.ihrhls.com
n32a-e2.revma.ihrhls.com
<ul>
<li><a href="https://stream.revma.ihrhls.com/zc8143" target="bam" id="first">Breeze</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc3949" target="bam">Pride</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc4422" target="bam">Hits</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc4409" target="bam">80s to Today</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc8478" target="bam">2010's</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc6850" target="bam">2000's</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc6834" target="bam">90's</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc5060" target="bam">80's</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc6437" target="bam">90's Alternative</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc6788" target="bam">Reggae</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc7078" target="bam">Classic Rock</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc6878" target="bam">Vinyl Classic Rock</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc6377" target="bam">Classical</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc4717" target="bam">Real Oldies</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc4439" target="bam">Cool Oldies</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc4242" target="bam">Jazz</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc6221" target="bam">Beach</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc6148" target="bam">Hawaii</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc4719" target="bam">R&B</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc6137" target="bam">Christmas Classics</a></li>
<li><a href="https://stream.revma.ihrhls.com/zc4596" target="bam">Christmas Favs</a></li>
</ul>
http://subfm.radioca.st/Sub.FM
http://kdhx-ice.streamguys1.com:80/live
http://eno.emit.com:8000/2bob_live_64.mp3
https://bytefm.cast.addradio.de/bytefm/main/high/stream
http://west-aac-64.streamthejazzgroove.com/stream
http://listen.jazz88.org/ksds.mp3
http://live.wostreaming.net/direct/ppm-jazz24aac256-ibc1
http://ice5.securenetsystems.net/KCSM
http://stream.live.vc.bbcmedia.co.uk/bbc_radio_one
http://direct.fipradio.fr/live/fip-midfi.mp3
http://icecast6.play.cz/croddur-256.mp3
http://stream.wqxr.org/wqxr
https://ice.cr1.streamzilla.xlcdn.com:8000/sz=RCOLiveWebradio=mp3-192
http://wdcb-ice.streamguys.org:80/wdcb128
https://www.wwoz.org/listen/hi
http://stream-relay-geo.ntslive.net/stream
http://ice1.somafm.com/beatblender-128-aac
http://ice1.somafm.com/brfm-128-aac
http://ice1.somafm.com/bootliquor-128-aac
http://ice1.somafm.com/cliqhop-128-aac
http://ice1.somafm.com/covers-128-mp3
http://ice1.somafm.com/deepspaceone-128-aac
http://ice1.somafm.com/defcon-128-aac
http://ice1.somafm.com/digitalis-128-aac
http://ice1.somafm.com/dronezone-128-aac
http://ice1.somafm.com/dubstep-128-aac
http://ice1.somafm.com/fluid-128-aac
http://ice1.somafm.com/folkfwd-128-aac
http://ice2.somafm.com/gsclassic-128-aac
http://ice1.somafm.com/groovesalad-128-aac
http://ice4.somafm.com/reggae-128-aac
http://ice1.somafm.com/illstreet-128-aac
http://ice1.somafm.com/indiepop-128-aac
http://ice1.somafm.com/seventies-128-aac
http://ice1.somafm.com/live-128-aac
http://ice1.somafm.com/lush-128-aac
http://ice1.somafm.com/metal-128-aac
http://ice1.somafm.com/missioncontrol-128-aac
https://ice6.somafm.com/n5md-128-aac
http://ice1.somafm.com/poptron-128-aac
http://ice1.somafm.com/secretagent-128-aac
http://ice1.somafm.com/7soul-128-aac
http://ice1.somafm.com/sf1033-128-aac
http://ice1.somafm.com/sonicuniverse-128-aac
http://ice1.somafm.com/spacestation-128-aac
http://ice1.somafm.com/suburbsofgoa-128-aac
https://ice6.somafm.com/synphaera-128-aac
http://ice1.somafm.com/thetrip-128-aac
http://ice1.somafm.com/thistle-128-aac
http://ice1.somafm.com/u80s-128-aac
https://ice1.somafm.com/vaporwaves-128-aac
https://tunein.com/radio/Radio-Paradise-Mellow-Mix-s308828/
http://stream.radioparadise.com/mellow-flac
http://stream.radioparadise.com/mellow-aac128
http://stream-dc1.radioparadise.com/
https://stream.revma.ihrhls.com/zc8478
https://stream.revma.ihrhls.com/zc8143
https://stream.revma.ihrhls.com/zc3949
https://stream.revma.ihrhls.com/zc4422
https://stream.revma.ihrhls.com/zc4409
https://stream.revma.ihrhls.com/zc6850
https://stream.revma.ihrhls.com/zc5060
https://stream.revma.ihrhls.com/zc6788
https://stream.revma.ihrhls.com/zc6834
https://stream.revma.ihrhls.com/zc4439
https://stream.revma.ihrhls.com/zc6878
https://stream.revma.ihrhls.com/zc6437
https://stream.revma.ihrhls.com/zc7078
https://stream.revma.ihrhls.com/zc4719
https://stream.revma.ihrhls.com/zc6221
-->
</html>