forked from gpac/mp4box.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mse-avif-viewer.html
45 lines (39 loc) · 2.33 KB
/
mse-avif-viewer.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>MP4Box.js - AVIF MSE-based viewer</title>
<!-- Include basic JQuery and JQuery UI files -->
<script src="lib/jquery/jquery.js"></script>
<link href="lib/jquery-ui/jquery-ui.min.css" rel="stylesheet" type="text/css">
<script src="lib/jquery-ui/jquery-ui.min.js"></script>
<script src="lib/jquery-ui/jquery-ui.slider.custom.js"></script>
<!-- Include JQuery-based Fancytree skin, library, and extensions -->
<link href="lib/fancytree/ui.fancytree.min.css" rel="stylesheet" type="text/css">
<script src="lib/fancytree/jquery.fancytree-all.min.js" type="text/javascript"></script>
<script type="text/javascript" src="lib/d3/d3.js"></script>
<script src="../dist/mp4box.all.js"></script>
<script src="sample-urls.js"></script>
<script src="mse-avif-viewer.js"></script>
<script src="ui-helper.js"></script>
<script src="downloader.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- GitHub Fork Me Ribbon -->
<a href="https://github.com/gpac/mp4box.js"><img style="position: absolute; z-index: 1; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub" ></a>
<!-- GitHub Stat Buttons -->
<div style="position: absolute; top: 10px; right: 150px; border: 0;" >
<a class="github-button" href="https://github.com/gpac/mp4box.js" data-style="mega" data-count-href="/gpac/mp4box.js/stargazers" data-count-api="/repos/gpac/mp4box.js#stargazers_count">Star</a>
<a class="github-button" href="https://github.com/gpac/mp4box.js/fork" data-style="mega" data-count-href="/gpac/mp4box.js/network" data-count-api="/repos/gpac/mp4box.js#forks_count">Fork</a>
<a class="github-button" href="https://github.com/gpac/mp4box.js" data-style="mega" data-count-href="/gpac/mp4box.js/watchers" data-count-api="/repos/gpac/mp4box.js#subscribers_count">Watch</a>
<script async defer id="github-bjs" src="https://buttons.github.io/buttons.js"></script>
</div>
<h3>MP4Box.js / MSE AVIF Viewer (see <a href="../#demos">other demos</a>)</h3>
<p>Client-side tool: files are processed locally in your browser and not uploaded to any server</p>
<div id="menubar" style="clear: both;"></div>
<div id="results" style="clear: both;">
<video id="v">
</div>
</body>
</html>