-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabs.html
More file actions
27 lines (24 loc) · 862 Bytes
/
abs.html
File metadata and controls
27 lines (24 loc) · 862 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ABS Example</title>
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<div class="container">
<a href="../" class="back-link">← Back to examples</a>
<h1>ABS Example</h1>
<h2>DASH</h2>
<video id="player" class="video-js" controls preload="auto" width="960" height="540"></video>
<h2>HLS</h2>
<video id="player-2" class="video-js" controls preload="auto" width="960" height="540"></video>
<h2>Example Code</h2>
<div class="code-block">
<pre><code id="code-display" class="language-javascript"></code></pre>
</div>
</div>
<script type="module" src="/src/abs.ts"></script>
</body>
</html>