-
Notifications
You must be signed in to change notification settings - Fork 0
/
speech.js
executable file
·217 lines (182 loc) · 4.53 KB
/
speech.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
(function(){
//キーボードの番号
var KEY ={
ONE: 49,
ZERO: 48
};
var recognition;
var two_line = /\n\n/g;
var one_line = /\n/g;
var first_char = /\S/;
var ignore_onend;
var isSpeech = false;
var start_timestamp = new Date().getTime();
var buf = '';
function addParagraph(str){
$('#conversation-log').append(
$('<div>')
.addClass('alert alert-dark')
.text(str)
);
}
function initRecognition(){
recognition = new webkitSpeechRecognition();
recognition.continuous = true;
recognition.interimResults = true;
// 結果取得時
recognition.onresult = function(event) {
var interim_transcript = '';
for (var i = event.resultIndex; i < event.results.length; ++i) {
if (event.results[i].isFinal) {
final_transcript += event.results[i][0].transcript;
} else {
interim_transcript += event.results[i][0].transcript;
}
}
final_transcript = capitalize(final_transcript);
// final_span.innerHTML = linebreak(final_transcript);
// interim_span.innerHTML = linebreak(interim_transcript);
console.log('final: ' + linebreak(final_transcript));
if(linebreak(interim_transcript).trim() === '' && buf !== ''){
addParagraph(buf);
}
buf = linebreak(interim_transcript).trim();
console.log('interim: ' + buf);
$('#query').val(linebreak(interim_transcript));
$('#final').val(linebreak(final_transcript));
};
// エラー時のハンドリング
recognition.onerror = function(event) {
if (event.error == 'no-speech') {
// start_img.src = 'mic.gif';
console.log('info_no_speech');
ignore_onend = true;
}
if (event.error == 'audio-capture') {
// start_img.src = 'mic.gif';
console.log('info_no_microphone');
ignore_onend = true;
}
if (event.error == 'not-allowed') {
if (event.timeStamp - start_timestamp < 100) {
console.log('info_blocked');
} else {
console.log('info_denied');
}
ignore_onend = true;
}
};
// 処理終了時
recognition.onend = function() {
recognizing = false;
info('終了');
if (ignore_onend) {
return;
}
/*
start_img.src = 'mic.gif';
if (!final_transcript) {
showInfo('info_start');
return;
}
showInfo('');
if (window.getSelection) {
window.getSelection().removeAllRanges();
var range = document.createRange();
range.selectNode(document.getElementById('final_span'));
window.getSelection().addRange(range);
}
if (create_email) {
create_email = false;
createEmail();
}
*/
};
}
/**
* 音声解析処理スタート
*/
function start(){
console.log('speech start');
isSpeech = true;
final_transcript = '';
$('#query').val('');
recognition.lang = 'ja-JP';
recognition.start();
}
/**
* 音声解析処理ストップ
*/
function end(){
console.log('speech stop');
isSpeech = false;
recognition.stop();
}
function linebreak(s) {
return s.replace(two_line, '<p></p>').replace(one_line, '<br>');
}
function capitalize(s) {
return s.replace(first_char, function(m) { return m.toUpperCase(); });
}
/**
* 発話スタートとストップのボタン処理
*
*/
function buttonDown(){
$(document).keydown(function(e){
// 1を押した時に発話開始
if(e.which == KEY.ONE){
if(!isSpeech){
$('#status').addClass('btn-danger').text('発話中');
start();
}else{
$('#status').removeClass('btn-danger').text('待機中');
end();
}
}
// 0を押した時に発話終了
else if(e.which == KEY.ZERO){
$('#status').removeClass('btn-danger').text('待機中');
end();
}
});
}
/**
* お知らせ表示
*/
function info(msg){
var existMsg = $('#information').text();
if(existMsg === ''){
$('#information').text(msg);
}else{
$('#information').text(existMsg + '\n' + msg);
}
}
/**
* メイン処理
*/
console.log("ready:");
//メイン処理スタート
$(document).ready(function(){
// 音声認識を使ったときは自動で検索を行うようにする
$('#query').bind("webkitspeechchange", function(e){
$('#salesform').submit();
});
// ブラウザが音声認識に対応しているか確認
if (('webkitSpeechRecognition' in window)) {
info('対応しています');
// 対応している場合
initRecognition();
buttonDown();
}else{
info('このブラウザは音声認識に対応していません');
// 検索欄にフォーカスさせる
$('#query').focus();
}
$('.switch').click(function(){
$('.result-log').toggle();
});
// 非表示項目を消す
$('.none').hide();
});
})();