-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
43 lines (35 loc) · 1.3 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 class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Video.js Chapters</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link href="node_modules/video.js/dist/video-js.css" rel="stylesheet">
<link href="videojs.chapter-thumbnails.css" rel="stylesheet">
</head>
<body>
<video id="player" class="video-js vjs-default-skin vjs-big-play-centered" width="600" height="250" controls>
<source src="asset/video/oceans-clip.mp4" type='video/mp4' />
<p class="vjs-no-js">
To view this video please enable JavaScript, and consider upgrading to a web browser that
<a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
</p>
</video>
<script src="node_modules/video.js/dist/video.js"></script>
<script src="videojs.chapter-thumbnails.js"></script>
<script>
// initialize the plugin
videojs('player').ready(function() {
this.chapter_thumbnails({
label: 'English',
language: 'en',
src: 'asset/vtt/chapters.vtt',
});
});
</script>
</body>
</html>