42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>LIVE PLAYER</title>
|
|
<link rel='stylesheet' href='assets/css/default.css' media='all' />
|
|
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
|
|
<script type="text/javascript" src="conf/player.conf.js"></script>
|
|
<script type="text/javascript">
|
|
var auto_get_meta = setInterval(function () {
|
|
$('#live').load('streaminfo.php');
|
|
}, 5000);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<table width="100%">
|
|
<tr><td width="25%">
|
|
<div class="player" id="player">
|
|
<div class="header">
|
|
<div class="controls">
|
|
<button class="btn big" id="playBtn" title="Lire"><img src='img/play.png' width='64'></button>
|
|
<button class="btn" id="stopBtn" title="Arrêter"><img src='img/stop.png' width='32'></button>
|
|
</div>
|
|
<div class="status" id="status">Arrêté</div>
|
|
</div>
|
|
<div>
|
|
</div>
|
|
<div class="vol">
|
|
<label class="small" for="vol">Volume</label>
|
|
<input id="vol" type="range" min="0" max="1" step="0.01" value="0.8" style="width:160px">
|
|
<button class="btn" id="muteBtn" title="Muet">🔊</button>
|
|
</div>
|
|
<audio id="audio" preload="none"></audio>
|
|
</div>
|
|
</td><td width="75%"><div style="color: black; font-family: arial; text-align: left;" id="live">Récupération des infos programme...</div></td>
|
|
</tr>
|
|
</table>
|
|
<script type="text/javascript" src="assets/js/player.js"></script>
|
|
</body>
|
|
</html>
|