-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 2.59 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 2.59 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Радио плейър</title>
<link rel="shortcut icon" href="favicon.ico" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="radios.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.7.1.slim.min.js" integrity="sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/hls.js/1.6.13/hls.min.js" integrity="sha512-LEIm1W/PgFJKoWrbqOV4WGAC0qOYd6ZC6MxoWgs7PDSY1iwhGaaLfjyq1Nwb/jiZM0kJKn3rqOQfXZqi40YUEQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="radios.js"></script>
</head>
<body class="text-center">
<form class="form-signin">
<h1 class="h3 mb-3 font-weight-normal">Радио плейър</h1>
<div class="form-group">
<select class="form-control" id="radios">
<option disabled selected>Избери радио</option>
<option value="https://e106-ts.cdn.bg/regstations/fls/Horizont.stream/playlist.m3u8">БНР Хоризонт</option>
<option value="https://e106-ts.cdn.bg/regstations/fls/Shumen.stream/playlist.m3u8">БНР Шумен</option>
<option value="https://play.global.audio/radio1128">Радио 1</option>
<option value="https://play.global.audio/radio1rock128">Радио 1 Рок</option>
<option value="https://play.global.audio/bgradio128">БГ Радио</option>
<option value="https://play.global.audio/veronika128">Вероника</option>
<option value="https://bss1.neterra.tv/veselina/stream_0.m3u8">Веселина</option>
<option value="https://bss1.neterra.tv/thevoicefm/stream_0.m3u8">The Voice</option>
<option value="https://play.global.audio/nrj128">Energy</option>
<option value="https://bravo.btv.bg/radio/njoy-radio-proxy/index.php">N-Joy</option>
<option value="https://play.global.audio/city128">City</option>
<option value="http://193.108.24.21:8000/fresh">Fresh!</option>
<option value="https://radio.rn-tv.com:8000/stream/1/">Мая</option>
</select>
</div>
<div class="slidecontainer">
<label>Сила на звука</label>
<input type="range" min="0" max="100" value="50" class="slider" id="slider">
</div>
</form>
</body>
</html>