-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
58 lines (49 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html>
<head>
<title>Dashling.js</title>
<style>
body {
font-family: Segoe UI;
font-size: 12px;
margin: 0;
padding: 0;
}
h1 {
font-family: Segoe UI Light;
font-weight: lighter;
font-size: 20px;
margin: 0;
padding: 5px 10px;
margin-bottom: 5px;
background: #eee;
}
h2 {
font-weight: bold;
}
input {
vertical-align: middle;
margin: 0 5px 2px 0;
}
.content {
padding: 5px 10px;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<h1>Dashling Test Page</h1>
<div class="content">
<p>
Dashling is a <b>Dynamic Adaptive Streaming over HTTP</b> (DASH) implementation. It downloads media fragments and pushes them into media buffers
provided by the browsers <b>Media Source Extension</b> support. As latency is more understood and buffer availability changes, quality is adjusted appropriately.
<a href="#" onclick="toggleBenefits()">See benefits over dash.js.</a>
</p>
<p><a href="examples/index.html">See example page</a></p>
<p><a href="test/unitTests.html">Run unit tests</a></p>
<p><a href="test/scenarioTests.html">Run scenario tests</a></p>
</div>
</body>
</html>