-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (30 loc) · 1.37 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html>
<head>
<title>BasicPlayerSample</title>
<link rel="stylesheet" href="style/base.css" />
<script src="script/lib/jquery.min.js"></script>
<script src="script/lib/VisitorAPI.js"></script>
<script src="script/lib/AppMeasurement.js"></script>
<script src="script/lib/VideoHeartbeat.min.js"></script>
<script src="script/app/notification.center.js"></script>
<script src="script/app/configuration.js"></script>
<script src="script/app/player/video.player.js"></script>
<script src="script/app/analytics/video.analytics.provider.js"></script>
<script src="script/main.js"></script>
</head>
<body>
<h2>VideoHeartbeat HTML5 Basic Sample Player</h2>
<div class="container">
<video id="movie" width="600" preload controls>
<source src="vid/clickbaby.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="vid/clickbaby.webm" type='video/webm; codecs="vp8, vorbis"'>
<source src="vid/clickbaby.ogv" type='video/ogg; codes="theora, vorbis"'>
</video>
<div class="overlay" id="pub-label" hidden>P</div>
</div>
<p>
More info. about media events in html5 players can be found at <a href="http://www.w3.org/2010/05/video/mediaevents.html">the w3c</a>
</p>
</body>
</html>