-
Notifications
You must be signed in to change notification settings - Fork 3
/
iframe-rmp.html
38 lines (35 loc) · 947 Bytes
/
iframe-rmp.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>TTO Live</title>
<link rel="stylesheet" href="">
<style>
#rmpPlayer .rmp-module {
display: none !important;
}
</style>
</head>
<body>
<script src="http://static.new.tuoitre.vn/rmp/js/rmp.min.js"></script>
<div id="rmpPlayer"></div>
<script>
var settings = {
licenseKey: 'Kl8lNzhlczdvdjI5az9yb201ZGFzaXMzMGRiMEElXyo',
bitrates: {
hls: 'http://livehls.tuoitre.vn/live/tvolive.m3u8'
},
delayToFade: 3000,
isLive: true,
poster: 'http://static.new.tuoitre.vn/logo/logo.png ',
pathToRmpFiles: "http://static.new.tuoitre.vn/rmp",
iframeMode: true,
sharing: true,
};
var elementID = 'rmpPlayer';
var rmp = new RadiantMP(elementID);
rmp.init(settings);
</script>
</body>
</html>