-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ejs
More file actions
31 lines (24 loc) · 898 Bytes
/
index.ejs
File metadata and controls
31 lines (24 loc) · 898 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>zpeech</title>
<link href='http://fonts.googleapis.com/css?family=Underdog' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrapper">
<h1 id="title">zpeech</h1>
<p class="description">ZPeech, vowel formant analysis experiment with Web Audio API</p>
<canvas id="frequencies" width=1024 height=200></canvas>
<div id="formants">
ƒ 1: <span id="f1"></span>
ƒ 2: <span id="f2"></span>
</div>
<div id="vowel"></div>
</div>
<a href="https://github.com/gre/zpeech"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"></a>
<script id="live-reload" src="http://localhost:35729/livereload.js"></script>
<script src="app.js"></script>
</body>
</html>