This repository has been archived by the owner on Aug 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
voice-command.js
469 lines (430 loc) · 12.5 KB
/
voice-command.js
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
// ----- On render -----
$(function() {
var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
if (!isChrome) {
unsupported();
}
setTimeout(function(){
$('#newPage').removeClass('loading')
}, 10);
var tip;
var defaultBehavior = {
url: 'https://www.google.com/search?q=',
firstHit: 'https://www.google.com/search?btnI&q='
};
// You can easily switch from Google to other default search engines here
/*defaultBehavior = {
url: 'https://duckduckgo.com/?q=',
firstHit: 'https://duckduckgo.com/?q=!'
}*/
var keywords = [{
"keyword":[
"weather be like",
"weather going to be like",
"weather going to be",
"weather going to be",
"weather like",
"weather be",
"weather"
],
"url": "defaultBehavior.url + weather%20"
}, {
"keyword": ["Go to", "goto", "open"],
"url": "defaultBehavior.firstHit"
}, {
"keyword":"my iphone",
"url":"https:\/\/www.icloud.com\/#find",
"command":true
}];
// You can add keywords in bulk by JSON file here.
var keywordPacks = [
"./keywords.json"
]
var precursors = [
'on',
'on my',
'in',
'in my',
'from',
'from my',
"'",
"'s",
"at",
"sell",
"have"
];
var worthlessPrefixes = [
"what's the",
"what is the",
"what will the",
"find",
"show me",
"show",
"i want to",
"i want",
"give me",
"help me find",
"help me",
"let me",
"search for",
"look up",
"look for",
"search for",
"search",
"i need",
"i need to",
"i need to get",
"i need to have",
"play",
"is",
"are",
"does",
"do they sell",
"do they have",
"can I buy",
"can I get"
];
var final_transcript = '';
var recognizing = false;
var cancel = false;
worthlessPrefixes.sort(lengthSort).reverse();
precursors.sort(lengthSort).reverse();
// Grab any keyword packs
$.each(keywordPacks, function(){
$.getJSON(this, function(data){
if (data.keywords) {
keywords = data.keywords.concat(keywords);
}
})
})
// Check to see if webkitSpeechRecognition is available
if (!('webkitSpeechRecognition' in window)) {
unsupported();
} else {
var recognition = new webkitSpeechRecognition();
recognition.interimResults = true;
recognition.continuous = true;
recognition.onstart = function() {}
recognition.onresult = function(e) {
var interim_transcript = '';
for (var i = e.resultIndex; i < e.results.length; ++i) {
if (e.results[i].isFinal) {
final_transcript = final_transcript + e.results[i][0].transcript;
} else {
interim_transcript = interim_transcript + e.results[i][0].transcript;
}
}
final_transcript = capitalize(final_transcript);
$('#final_span').empty().html(linebreak(final_transcript));
$('#interim_span').empty().html(linebreak(interim_transcript));
};
}
recognition.onerror = function(e) {}
function startButton(event) {
final_transcript = '';
//recognition.lang = select_dialect.value;
recognition.start();
}
function unsupported() {
console.log('Webkit speech api not supported in your browser');
$('#unsupported').addClass('unsupported');
}
// Main start event
$('#button').on('mousedown touchstart', function() {
if (cancel) {
TweenMax.killAll();
reset();
} else {
startRecog();
}
});
function startRecog() {
if (!recognizing) {
recognition.start();
final_transcript = '';
$('#final_span').empty();
$('#interim_span').empty();
$(this).text('done');
recognizing = true;
}
};
$(document).on('touchend mouseup', function() {
endRecog();
})
function endRecog() {
if (recognizing) {
recognizing = false;
recognition.stop();
}
}
recognition.onend = function() {
var string = final_transcript.toLowerCase();
if (string.trim() != '') {
recognizing = false;
cancel = true;
var counter = {
t: 0
},
border = '2px solid white',
loading = $('<div class="element"><div class="loading"></div><div class="slice"></div></div>'),
fill = $('<div class="loading ring">')
$('#button #contents').append(loading).append(fill);
$('#button').addClass('cancel');
TweenMax.to(counter, 2, {
t: 100,
ease: Linear.easeNone,
onUpdate: function() {
TweenMax.set($('#button .element .loading'), {
rotation: (counter.t * 3.6) - 45
});
if (counter.t >= 25) {
$('#button > #contents > .loading.ring').css('border-top', border);
};
if (counter.t >= 50) {
$('#button > #contents > .loading.ring').css('border-right', border);
$('#button .element .slice').remove();
}
if (counter.t >= 75) {
$('#button > #contents > .loading.ring').css('border-bottom', border);
}
},
onComplete: function() {
process(string);
$('#newPage').addClass('going');
}
});
} else {
showTip();
}
}
function process(string) {
string = string.toLowerCase();
success = false;
var foundKeywords = [];
$.each(keywords, function() {
if ($.isArray(this.keyword)) {
var self = this;
this.keyword.sort(lengthSort).reverse();
$(this.keyword).each(function() {
var keyword = this.toLowerCase(),
keywordIndex = String(string).indexOf(keyword);
if (keywordIndex > -1) {
foundKeywords.push({
'keywordIndex': keywordIndex,
'keywordObject': self,
'keyword': keyword
});
}
});
} else {
var keyword = this.keyword.toLowerCase(),
keywordIndex = String(string).indexOf(keyword);
if (keywordIndex > -1) {
foundKeywords.push({
'keywordIndex': keywordIndex,
'keywordObject': this,
'keyword': this.keyword
});
}
}
});
if (!foundKeywords.length) {
noKeyword(string);
} else if (foundKeywords.length == 1) {
// String ops
var passIt = foundKeywords[0].keywordObject;
passIt.foundKeyword = foundKeywords[0].keyword;
parseString(string, passIt);
} else {
// At this point, we know more than one keyword is in here.
// Now we need to determine which is the command
// and which is part of a query.
var youngestKeyword,
youngestIndex = 10000000000000000000000000000,
finished = false;
$.each(foundKeywords, function() {
if (youngestIndex > this.keywordIndex) {
youngestKeyword = this.keywordObject;
youngestKeyword.foundKeyword = this.keyword;
youngestIndex = this.keywordIndex;
}
var currentKeywordObject = this.keywordObject;
var currentKeyword = this.keyword
$.each(precursors, function(){
var thisString = String(string).toLowerCase();
var precursorIndex = thisString.indexOf(String(this).toLowerCase()),
proposedIndex = precursorIndex + String(this).length,
actualIndex = thisString.indexOf(String(currentKeyword).toLowerCase());
if (precursorIndex > 0){
if (proposedIndex == actualIndex || proposedIndex + 1 == actualIndex) {
currentKeywordObject.foundKeyword = currentKeyword;
parseString(string, currentKeywordObject);
finished = true;
return false;
}
}
})
if (finished) {
return false;
}
})
if (!finished) {
parseString(string, youngestKeyword);
}
}
}
function noKeyword(string) {
$(worthlessPrefixes).each(function() {
if (string.indexOf(this.toLowerCase()) == 0) {
string = string.substring(this.length + 1);
return false;
}
});
getThat(defaultBehavior, string.trim());
}
function parseString(string, keyword) {
var found = false;
// strip out useless human context
$(worthlessPrefixes).each(function() {
if (string.indexOf(this) == 0) {
string = string.substring(this.length + 1);
return false;
}
});
if (string.trim() == String(keyword.foundKeyword).toLowerCase()) {
// There is no string here, so go to the root domain
if (!keyword.command) {
var pathArray = keyword.url.split('/'),
protocol = pathArray[0],
host = pathArray[2],
url = protocol + '//' + host;
newKeyword = {
url: url
};
}
else {
newKeyword = {
url: keyword.url
}
}
getThat(newKeyword, '');
} else {
// There is a string here, so query it
$(precursors).each(function() {
var onKeyword = String(this) + ' ' + keyword.foundKeyword.toLowerCase();
if (string.indexOf(onKeyword) > -1 && string.indexOf(onKeyword) == string.length - onKeyword.length) {
string = string.substring(0, string.length - onKeyword.length).trim();
found = true;
return false
}
});
var searchXFor = keyword.foundKeyword.toLowerCase() + ' for';
if (string.indexOf(searchXFor) == 0 && !found) {
string = string.substring(searchXFor.length + 1);
}
if (!found) {
string = string.replace(keyword.foundKeyword.toLowerCase(), '')
}
getThat(keyword, string.trim());
}
}
function getThat(command, query, firstHit) {
var suffix = '';
if (command.suffix) {
suffix = command.suffix
}
if (firstHit) {
openIt(defaultBehavior.firstHit + encodeURIComponent(query) + suffix);
} else {
command.url = command.url.replace("defaultBehavior.url + ", defaultBehavior.url)
.replace("defaultBehavior.firstHit + ", defaultBehavior.firstHit)
.replace("defaultBehavior.url", defaultBehavior.url)
.replace("defaultBehavior.firstHit", defaultBehavior.firstHit);
openIt(command.url + encodeURIComponent(query) + suffix);
}
}
function openIt(url) {
window.location.href = url;
}
function reset() {
TweenMax.set($("#button .loading"), {
clearProps: "all"
});
$('#button').removeClass('cancel');
$('#button #contents').empty();
cancel = false;
final_transcript = '';
$('#final_span').text('');
}
function showTip() {
reset();
$('#tip').addClass('show');
if (tip) {
window.clearTimeout(tip);
}
tip = setTimeout(function() {
$('#tip').removeClass('show');
}, 3000);
}
/// ##### VISUALIZATION STUFF #####
var liveSource;
var analyser;
var frequencyData;
var scaling = 1.5;
function update() {
requestAnimationFrame(update);
if (recognizing) {
analyser.getByteFrequencyData(frequencyData);
TweenMax.set($('.visual'), {
autoAlpha: 0.75
});
TweenMax.set($('#viz1'), {
scale: (((frequencyData[8] + 1) / 100) / scaling)
});
TweenMax.set($('#viz2'), {
scale: (((frequencyData[15] + 1) / 100) / scaling)
});
TweenMax.set($('#viz3'), {
scale: (((frequencyData[21] + 1) / 100) / scaling)
});
} else {
TweenMax.set($('.visual'), {
autoAlpha: 0
})
}
}
// creates an audiocontext and hooks up the audio input
var context = new AudioContext();
navigator.webkitGetUserMedia({
audio: true
}, function(stream) {
console.log("Connected live audio input");
if (!analyser) {
liveSource = context.createMediaStreamSource(stream);
// Create the analyser
analyser = context.createAnalyser();
analyser.smoothingTimeConstant = 0.3;
analyser.fftSize = 64;
frequencyData = new Uint8Array(analyser.frequencyBinCount);
liveSource.connect(analyser);
};
update();
}, function() {
console.log('Error connecting to audio')
});
});
/// ##### BASIC UTILS #####
function capitalize(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
function linebreak(s) {
var two_line = /\n\n/g;
var one_line = /\n/g;
return s.replace(two_line, '<p></p>').replace(one_line, '<br>');
}
function lengthSort(astr, bstr) {
if (astr.length != bstr.length) {
return astr.length - bstr.length;
}
return (astr < bstr) ? -1 : (astr > bstr) ? 1 : 0;
};