-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MusicScroll</title>
<!--Import CSS-->
<link rel="stylesheet" type="text/css" href="assets/main.css" />
<!--Import Favicon-->
<link rel="icon" sizes="16x16 32x32 64x64" href="assets/favicon.ico">
</head>
<body>
<h1>MusicScroll</h1>
<div id="controls">
<button id="reset" onclick="window.location.reload()">Reset</button>
<button id="fullscreen" onclick="fullscreen()">Fullscreen</button>
</div>
<br>
<input type="file" id="fileInput" name="file" accept="application/pdf"/>
<div id="pageDisplay">
<canvas id="canvas"></canvas>
</div>
<div id="videoInput">
<video id="video" width="720" height="540" muted></video>
</div>
<script src="/face-api.js"></script>
<script src="https://unpkg.com/pdfjs-dist@latest/build/pdf.min.js"></script>
<script src="/track.js"></script>
</body>
<footer>
<a href="https://github.com/alexxyu/music-scroll-js">Source code</a>
</footer>
</html>