-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
33 lines (30 loc) · 1.11 KB
/
Copy pathdemo.html
File metadata and controls
33 lines (30 loc) · 1.11 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
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./demo.css"/>
<script src="demo.js"></script>
<title>TryIt</title>
</head>
<body>
<header>
Lyrics Alignmnet
</header>
<section>
<div class="col-1">
<div class="img-block">
<img src="./src/pic/mp3.png" />
</div>
<label class="lab-mp3" for="song">Audio </label>
<input class="song" type='file' id="song" accept=".mp3" onchange="loadSong()">
<label class='lab-org' for="orglyric">Original Lyrics</label>
<input class='orglyric' type="file" id="orglyric" accept=".txt" onchange="readLyric()">
<label class='lab-ali' for="textfile">Align-Result</label>
<input class='textfile' type="file" id="textfile" accept=".txt" onchange="readTimestamp()">
<audio id='playsong' controls onplay="alignLyrics()">
</audio>
</div>
<div class="lyric" id="lyric"></div>
</section>
</body>
</html>