-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 842 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
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="imsc-player-demo">
<meta charset="utf-8">
<title>imscJS demo</title>
<script src="https://unpkg.com/[email protected]/dist/imsc.all.min.js"></script>
<link href="css/style.css" rel="stylesheet" />
<link rel="icon" href="data:;base64,=">
</head>
<body>
<div>
<div id="videoContainer">
<video src="audio/silence.mp3"
id="imscVideo"
muted loop controls width="800" height="600" style="background-color: black;">
<track src="ttml/subtitles.ttml"
kind="subtitles"
label="Expanded TTML Sample"
srclang="en"/>
</video>
</div>
<div id="render-div"></div>
</div>
<script src="js/index.js"></script>
</body>
</html>