1
0
Fork 0
mirror of https://github.com/LaQuay/TDTChannels.git synced 2025-10-20 06:00:20 +02:00

Base commit for SRC

This commit is contained in:
Marc 2018-09-22 19:28:28 +02:00
parent dd2b46e1d3
commit 14cb3e74a2
8 changed files with 371 additions and 0 deletions

37
script/public/index.html Normal file
View file

@ -0,0 +1,37 @@
<html>
<head>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/clappr@latest/dist/clappr.min.js"></script>
</head>
<body>
<div id="player"></div>
<script>
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = decodeURIComponent(window.location.search.substring(1)),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : sParameterName[1];
}
}
};
var channelToReproduce = getUrlParameter("channel");
if (channelToReproduce.includes("m3u8")) {
var player = new Clappr.Player({
source: channelToReproduce,
parentId: '#player',
height: '100%',
width: '100%',
autoPlay: true,
});
}
</script>
</body>
</html>