forked from flavioribeiro/clappr-p2phls-stats-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (25 loc) · 918 Bytes
/
index.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript" charset="utf-8" src="clappr.js"></script>
<script type="text/javascript" charset="utf-8" src="dist/p2phlsstats.js"></script>
<title>p2phls Test Page</title>
<script type="text/javascript" charset="utf-8">
window.onload = function() {
player = new WP3.Player({sources: ['http://bem.tv/superMisto.mp4'],
plugins: {container: [P2PHLSStats]},
width: 640, height: 360,
poster: "http://www.bem.tv/assets/poster.png",
imageUrl: "http://bem.tv/assets/watermark3.png"
});
player.attachTo(document.getElementById('player-wrapper'));
}
</script>
</head>
<body>
<div align=center>
<div id="player-wrapper"></div>
</div>
</body>
</html>