-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (24 loc) · 994 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bitmovin Encoding Info</title>
<script type="text/javascript">
(function() {
document.addEventListener("DOMContentLoaded", function() {
document.getElementById("redirect").href = "./outputs.html" + window.location.search
});
})();
</script>
</head>
<body>
<h2>A series of tools to meaningfully analyse Bitmovin Encoding configuration and outputs</h2>
<ul>
<li><a href="encoding.html">outputs.html</a> - Display all manifests, muxings and streams in a single view</li>
<li><a href="compare.html">compare.html</a> - Diff between multiple single-stream (ie. OTT) muxings</li>
</ul>
<p>If the URL to this page previously sent you to the first tool in that list, you may want to update
your browser bookmarks.</p>
<p>In the meantime, here is a quick <a href="#" id="redirect">redirect</a></p>
</body>
</html>