-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ascii Art Converter</title>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<h1>Ascii Video Converter</h1>
<p>Made with the help of <a href="https://github.com/jpetitcolas/ascii-art-converter">jpetitcolas</a></p>
</header>
<label for="input">Choose a video file to process:</label>
<input type="file" id="input" name="input_video" accept="video/mp4, video/mov">
<button id="playButton">
Play
</button>
<button id="ChangeAscii">
Click To Change Ascii Mode
</button>
<input id="resolution" name="resolution" type="range" min="1" max="3" value="3">
<label for="resolution">Change Resolution</label>
<video width="400" controls id="video" style="display:none" src="./src/Rick Astley - Never Gonna Give You Up (Official Music Video).mp4">
</video>
<canvas id="preview" style="display: none;" width="400" height="400"></canvas>
<pre id="ascii"></pre>
<script src="./src/index.js"></script>
</body>
</html>