-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtts.html
93 lines (88 loc) · 3.3 KB
/
tts.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<body>
<style type="text/css">
.tg {border-collapse:collapse;border-spacing:0;border-color:#bbb;}
.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:#bbb;color:#594F4F;background-color:#E0FFEB;}
.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:#bbb;color:#493F3F;background-color:#9DE0AD;}
.tg .tg-yw4l{vertical-align:top}
</style>
<h1>Text to Speech using Deep Neural Networks</h1>
<table class="tg">
<tr>
<th class="tg-yw4l">Utterance</th>
<th class="tg-yw4l">Natural Speech</th>
<th class="tg-yw4l">300 UTT Training</th>
<th class="tg-yw4l">1100 UTT Training</th>
</tr>
<tr>
<td class="tg-yw4l">Author of the danger trail, Philip Steels, etc.</td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\cmu_us_arctic_slt_a0001.wav" type="audio/wav">
Your browser does not support the audio element.
</audio>
</td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\wav1f300.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\wav1f1100.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
</tr>
<tr>
<td class="tg-yw4l">Will we ever forget it.</td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\cmu_us_arctic_slt_a0005.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\wav5f300.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\wav5.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
</tr>
<tr>
<td class="tg-yw4l">I'm playing a single hand in what looks like a losing game.</td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\cmu_us_arctic_slt_a0010.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\wav1f300.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\wav10.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
</tr>
</table>
<h1>Results on 3 different Systems with MFCC/Samples/FFT output Features</h1>
<table>
<tr>
<td class="tg-yw4l"></td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\arctic_a0001.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\arctic_a0001s1.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\arctic_a0001s3.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
<td class="tg-yw4l"><audio controls>
<source src="\wavs\arctic_a0001s5.wav" type="audio/wav">
Your browser does not support the audio element.
</audio></td>
</tr>
</table>
</body>
</html>