-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (25 loc) · 749 Bytes
/
index.html
File metadata and controls
30 lines (25 loc) · 749 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
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Dithering Test</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Video Dithering Shader Test</h1>
<div id="container">
<canvas id="canvas"></canvas>
</div>
<video id="video" crossorigin="anonymous" muted playsinline loop></video>
<div class="controls">
<button id="play-btn">Play</button>
<button id="pause-btn">Pause</button>
<input type="file" id="file-input" accept="video/*">
</div>
<div class="info">
<p>Upload a video file or it will use a sample video</p>
</div>
<script type="module" src="main.js"></script>
</body>
</html>