-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
52 lines (49 loc) · 1.89 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
<html>
<head>
<title>meSing.js</title>
<h2>meSing.js</h2>
<br>
<subtitle>A JavaScript singing synthesis library by <a href="http://usdivad.com/" target="_blank">David Su</a></subtitle>
<br>
<subtitle>(<a href="https://github.com/usdivad/mesing">Source code</a> | <a href="https://vimeo.com/311523456">Video</a> | <a href="polyphony.html">Polyphony demo</a>)</subtitle>
<br><br><br>
</head>
<body>
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="css/jquery-ui.min.css"/>
<link rel="stylesheet" href="css/jquery-ui.structure.min.css"/>
<script src="js/lib/jquery-1.11.3.min.js"></script>
<script src="js/lib/jquery-ui.min.js"></script>
<!--<script src="js/lib/mespeak/mespeak.js"></script>-->
<script src="js/lib/mespeak/mespeak.full.js"></script>
<script src="js/lib/vocoder_jergason.js"></script>
<script src="js/lib/timbre.dev.js"></script>
<script src="js/src/mesing.js"></script>
<script src="js/src/index.js"></script>
<!-- <button id="initializeGridBtn">Initialize Grid</button> -->
<!-- <br> -->
<button id="startBtn" disabled>Play</button>
<button id="stopBtn" disabled>Stop</button>
<button id="setVoicesBtn">Set Voices</button>
<br>
<div id="voicesStatus">voices not yet set; please wait or click "Set Voices"</div>
<br><br>
<div class="grid" id="msDisplay">
</div>
<br><br>
<strong>Input format:</strong>
<br>
lyric syllable (e.g. "love")
<br>
midi note (e.g. 60)
<br><br>
<strong>Directions:</strong>
<br>
Input lyrics and MIDI notes -> Click "Set Voices" -> Press "Start" -> Enjoy!
<br><br>
<br>
<subtitle>Rhyme suggestions provided by the <a href="http://rhymebrain.com/api.html" target="_blank">RhymeBrain API</a></subtitle>
<br><br>
<subtitle><a href="polyphony.html">meSing.js polyphony demo</a></subtitle>
</body>
</html>