forked from vibestepler/TATA-WEB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.html
87 lines (77 loc) · 2.01 KB
/
player.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>livestream</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="//content.jwplatform.com/libraries/SAHhwvZq.js"></script>
<style>
body {
margin: 0px
}
.jwplayer {
position: absolute !important
}
.jwplayer.jw-flag-aspect-mode {
min-height: 100%;
max-height: 100%
}
</style>
</head>
<body>
<div id="jwplayerDiv"></div>
<script type="text/javascript">
// Function to get URL parameters
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
// Get parameters from the URL
var fileUrl = getParameterByName('emmbed-url');
var kid = getParameterByName('kid');
var key = getParameterByName('key');
// Determine stream type
var isMpd = fileUrl.endsWith('.mpd');
var isM3U8 = fileUrl.endsWith('.m3u8');
// Set up JWPlayer
var playerSetup = {
file: fileUrl,
position: 'bottom',
autostart: true,
stretching: "",
width: "100%"
};
if (isMpd) {
// Set up DRM for DASH with keys
playerSetup.type = 'dash';
playerSetup.drm = {
clearkey: {
keyId: kid,
key: key
}
};
} else if (isM3U8) {
// Set up DRM for HLS with keys
playerSetup.type = 'hls';
if (kid && key) {
playerSetup.drm = {
clearkey: {
keyId: kid,
key: key
}
};
}
} else {
// Default to HLS without keys
playerSetup.type = 'hls';
}
jwplayer("jwplayerDiv").setup(playerSetup);
</script>
</body>
</html>