-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.44 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.44 KB
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>
<title>player</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<label for="select">File:</label>
<input type="file" id="upload" accept="audio/*, video/*">
<br><br>
<label for="url">Or a URL:</label>
<input type="text" id="url" />
<p><span id="np2" title="State of the playback">Playback stopped.</span> <span id="time" title="Time elapsed of track"></span></p>
<video id="player" loop width="650"></video>
<button onclick="rwd()">< 10s</button>
<button onclick="plps()" id="plps">Play</button>
<button onclick="fwd()">10s ></button>
<button onclick="stop()">Stop </button><br>
<button onclick="loop()" id="loop">Loop ON</button>
<button onclick="toggle()">Controls</button>
<button onclick="desync()">Fix desync</button>
<button onclick="dayandnight()" id="sex">Light</button>
<br><br> <label for="speed">Speed</label> <input class="slidingthings" type="range" id="speed" min="0.1" max="2" step="0.1" value="1"> <span id="spd">1</span>x<br>
<label for="volume">Volume</label> <input type="range" id="volume" min="0" max="1" step="0.01" value="1">
<span id="vol">1</span><br>
<label for="index">Scrub</label> <input type="range" id="index" min="0" max="100" step="1" value="0"> <span id="idx">0</span>s<br>
<script src="index.js"></script>
</body>
</html>