forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ttsdebug.html
35 lines (31 loc) · 1.04 KB
/
ttsdebug.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
<!DOCTYPE html>
<html>
<head>
<title>Chrome TTS Debug</title>
<link href="ttsdebug.css" rel="stylesheet" type="text/css">
<script src="ttsdebug.js"></script>
</head>
<body>
<div id="main">
<h2>Chrome Text-to-Speech Debug</h2>
<div id="instructions">
<p>
This app is for developers of Chrome TTS engines, to help validate that
an engine is properly implementing the API. Click on a button to run a
test. A lot of errors can be detected automatically, but some tests
require manually listening to the speech, and it's important to listen to
all tests running to identify other potential glitches.</p>
<p>For more diagnostic information, open the JavaScript console.</p>
</div>
<div>
<label for="voices">Voice:</label>
<select id="voices">
<option value="">Unspecified</option>
</select>
<button id="stop">Emergency Stop!</button>
</div>
<div id="container"></div>
</div>
</body>
</html>