-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (82 loc) · 2.15 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
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
<head>
<title>Ryu Bot</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<script src="js/libs/p5.min.js"></script>
<script src="js/libs/p5.dom.js"></script>
<script src="js/libs/p5.speech.js"></script>
<script src="js/libs/responsive-voice.js"></script>
<script src="js/functions.js"></script>
<script src="js/vars.js"></script>
<script src="js/logic.js"></script>
<script src="js/config.js"></script>
<br>
<div id="panel">
<div id="h1"></div>
<img width="350px" height="350px" id="ryu" src="pics/bot/pic.png">
<table align="center">
<tr>
<td>Select A Voice</td>
<td>:</td>
<td id="voice_ver">
</td>
</tr>
<!--
<tr>
<td>Rate of Speaking </td>
<td>:</td>
<td>
<input type="range" min="0" oninput="set()" max="2000" id="rate">
</td>
</tr>
-->
<tr>
<td>Pitch of Speaking</td>
<td>: </td>
<td>
<input type="range" min="0" max="2000" id="pitch">
</td>
</tr>
<!--
<tr>
<td>Voloume of Speaking</td>
<td>: </td>
<td>
<input type="range" min="0" max="111" id="volume">
</td>
</tr>
-->
<tr>
<td>Fast Mode (Experimental)</td>
<td>: </td>
<td>
<input type="checkbox" checked="true" onclick="fast()" id="fast">
</td>
</tr>
<tr>
<td>What I Heard</td>
<td>:</td>
<td id="ytext"></td>
</tr>
<tr>
<td>My reply</td>
<td>:</td>
<td id="text"></td>
</tr>
<tr>
<td>Status</td>
<td>:</td>
<td id="status"></td>
</tr>
</table>
<button id='dummy' onclick="responsiveVoice.allowSpeechClicked(true)">
Start Speaking
</button>
<button style="display: block;" onclick="set()" class="box">
adjust pitch
</button>
<br>
</div>
<script src="js/sel.js"></script>
</body>