forked from viki-org/videojs-ima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>Video.js IMA Plugin Test Suite</title>
<!-- Load Video.js -->
<link rel="stylesheet" href="//vjs.zencdn.net/5.3.0/video-js.css">
<script src="//vjs.zencdn.net/5.3.0/video.js"></script>
<!-- Load QUnit -->
<link rel="stylesheet" href="//code.jquery.com/qunit/qunit-1.14.0.css">
<script src="//code.jquery.com/qunit/qunit-1.14.0.js"></script>
<!-- Load videojs-contrib-ads -->
<link rel="stylesheet" href="//rawgit.com/videojs/videojs-contrib-ads/master/src/videojs.ads.css">
<script src="//rawgit.com/videojs/videojs-contrib-ads/master/src/videojs.ads.js"></script>
<!-- Load IMA library -->
<script src="//s0.2mdn.net/instream/html5/ima3_debug.js"></script>
<!-- Load local IMA plugin -->
<link rel="stylesheet" href="../src/videojs.ima.css">
<script src="../src/videojs.ima.js"></script>
<script src="videojs.ima.test.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
<video id="content_video" class="video-js vjs-default-skin"
controls preload="auto" width="640" height="360">
<source src="http://rmcdn.2mdn.net/Demo/vast_inspector/android.mp4" type="video/mp4" ></source>
</video>
</div>
</body>
</html>