-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
154 lines (120 loc) · 5.2 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<icon src="img/favicon.png" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="MIG SE Speech Recognition Demonstrator">
<meta name="author" content="MIG SE Team">
<link rel="shortcut icon" href="img/favicon.png">
<title>SpeechApp demonstrator</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap theme -->
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/theme.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="../../docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<script src="js/cordova.js"></script>
<!--<script src="phonegap.js"></script>-->
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">SpeechApp</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#services">Our services</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">About <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#team">Our team</a></li>
<li><a href="#work">Our work</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container theme-showcase">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>SpeechApp mobile!</h1>
<p>Welcome to this demonstrator of our brand-new state of the art speech recognition technology</p>
<p>Test it, feed us with a few words</p>
<p><a href="#services" class="btn btn-primary btn-lg" role="button">Learn more »</a></p>
</div>
<div class="page-header" id="demonstrator">
<h1>Demonstrator</h1>
</div>
<p>
<div style="text-align: center;" id="sound-recording">
<img class="slideInDown animated" src="img/logomigSE.png" alt="microphone" onclick="main();" id="microphone"/>
<p id="recording">
<audio autoplay src="" id="audio">audio</audio>
</p>
<p id="responseWord" style="color: blue" ></p>
</div>
</p>
<div class="page-header" id="services">
<h1>Our services</h1>
</div>
<p>
</p>
<div class="page-header" id="team">
<h1>Our team</h1>
</div>
<p>
<p style="text-align: center;">
<img style="max-width: 100%;" src="img/team.jpg" />
</p>
We are a team of 13 first year students at <a href="http://wwww.mines-paristech.eu/"> MINES ParisTech</a><br />
</p>
<div class="page-header" id="work">
<h1>Our work</h1>
</div>
<p>
We've been working for 3 weeks on speech recognition at the <a href="http://www.cma.ensmp.fr/">CMA</a>. We've build from scratch an isolated
spoken word recognition engine that works pretty well, and the tools to use it easily. This webapp is
part of it.
</p>
<p>Our project has been written with Python, and its source is hosted on
<a href="https://github.com/giliam/mig2013">our Git repository</a></p>
<div class="page-header" id="contact">
<h1>Contact</h1>
</div>
<p>
You'll find our GitHub profiles on
<a href="https://github.com/giliam/mig2013">our Git repository page</a>.<br />
The maintainer of that webapp can be contacted at
<a href="mailto:speechapp@wumzi.info">speechapp@wumzi.info</a>.
</p>
</div> <!-- /container -->
<!-- SpeechApp js core -->
<script src="js/main.js"></script>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/holder.js"></script>
</body>
</html>