-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
107 lines (94 loc) · 2.62 KB
/
app.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
var lastEventTimeout;
var waiting = false;
var recognizing = false;
function zamanuha() {
setTimeout(function() {
if (recognizing) {
zamanuha();
} else {
speak(getWelcomePhrase(), function() {
console.log('^^^')
recognition.start();
});
}
}, 5000)
// }, 60000*3)
}
var welcomePhrases = [
'так ты хочешь знать свое будущее?',
'ты уверен?',
'смелый человечишка',
'чувствую дерзновение',
'я знаю то, что с тобой было, что ты пушил и что с тобой будет',
'касатик, давай погадаю?',
'в мастер влили что-то несвеежее'
];
function getWelcomePhrase() {
return welcomePhrases[(Math.random() * welcomePhrases.length) | 0];
}
var recognition = new webkitSpeechRecognition();
recognition.lang = 'ru-RU';
recognition.continuous = true;
recognition.interimResults = true;
recognition.onstart = function() {
console.info('## started');
recognizing = true;
};
recognition.onresult = function(event) {
for (var i = 0; i < event.results.length; i++) {
var result = event.results[i];
console.log('##', result.isFinal, result[0].transcript);
if (result.isFinal) {
var transcript = result[0].transcript;
if (transcript.indexOf('да') !== -1 ||
transcript.indexOf('будуще') !== -1 ||
transcript.indexOf('судьб') !== -1 ||
transcript.indexOf('предска') !== -1 ||
transcript.indexOf('скажи') !== -1) {
speak(null, function() {
console.log('$$$')
recognition.start();
});
// запасное начало распознавания, если callback utterance.onend не сработал
setTimeout(function() {
if (!recognizing) {
recognition.start();
}
}, 10000)
// var utterance = new SpeechSynthesisUtterance(getWelcomePhrase());
// utterance.pitch = 0.1;
// utterance.rate = 0.6;
// utterance.onend = function() { recognition.start() };
// speechSynthesis.speak(utterance);
return;
} else {
if (!recognizing) {
recognition.start();
}
return;
}
}
if (waiting) {
clearTimeout(lastEventTimeout);
} else if (!result.isFinal) {
waiting = true;
}
}
if (!result.isFinal) {
lastEventTimeout = setTimeout(function() {
waiting = false;
recognition.stop();
console.log('## result.isFinal', result.isFinal);
if (result.isFinal) {
}
}, 500)
}
};
recognition.onerror = function(error) {
console.error(error);
};
recognition.onend = function() {
console.info('## ended');
recognizing = false;
};
recognition.start();