-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti-track.html
More file actions
35 lines (32 loc) · 1.43 KB
/
multi-track.html
File metadata and controls
35 lines (32 loc) · 1.43 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Multiple Track Example</title>
<!-- polyfill -->
<script type="text/javascript" src="polyfills/texttrackcuepolyfill-texttrack.js"></script>
<!-- utilities -->
<script type="text/javascript" src="utils/vmt-loader.js"></script>
<script type="text/javascript" src="utils/vmt-sync-parser.js"></script>
<!-- example code -->
<link rel="stylesheet" href="css/common-example.css">
<script type="text/javascript" src="js/common-example.js"></script>
<script>
<!-- handle cue enter & exit events only (default behaviour) -->
const vmtSyncExample = {cueEvent: true};
</script>
<script type="text/javascript" src="js/datacue-example.js"></script>
</head>
<body>
<div class="video-wrapper">
<video id="video-player" controls src="media/big_buck_bunny_720p_1mb.mp4" width="672" height="378">
<track src="vmt/count-cues.vmt" kind="metadata" />
<track src="vmt/colour-cues.vmt" kind="metadata" />
Your browser does not support HTML5 video.
</video>
<div>
<div class="count-frame">Count: <span id="count" class="count"></span></div>
<div class="colour-frame">Colour: <span id="colour" class="colour"> ●</span></div>
</div>
</div>
</body>
</html>