-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdemo.html
More file actions
43 lines (41 loc) · 1.21 KB
/
demo.html
File metadata and controls
43 lines (41 loc) · 1.21 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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>speech2sing</title>
</head>
<body>
<h1>speech2sing demo</h1>
<h2>人生短短幾個秋</h2>
<p>original recording</p>
<audio controls>
<source src="sounds/人生短短.ogg" type="audio/ogg">
<source src="sounds/人生短短.mp3" type="audio/mpeg">
</audio>
<p>after using "To female voice" effect</p>
<audio controls>
<source src="sounds/人生短短_female.wav" type="audio/x-wav">
</audio>
<h2>Birthday song</h2>
<p>original recording</p>
<audio controls>
<source src="sounds/祝你生日快樂.ogg" type="audio/ogg">
<source src="sounds/祝你生日快樂.mp3" type="audio/mpeg">
</audio>
<p>synthesizer result</p>
<audio controls>
<source src="sounds/生日歌.wav" type="audio/x-wav">
</audio>
<h2>給我一首歌的時間</h2>
<p>original recording</p>
<audio controls>
<source src="sounds/能不能給我一首歌的時間.ogg" type="audio/ogg">
<source src="sounds/能不能給我一首歌的時間.mp3" type="audio/mpeg">
</audio>
<p>synthesizer result</p>
<audio controls>
<source src="sounds/給我一首歌的時間.wav" type="audio/x-wav">
</audio>
</body>
</html>