xxxxxxxxxx
18
// SpeechRec (c) 2022 kouichi.matsuda@gmail.com
let rec; //音声認識用のp5.SpeechRecオブジェクトを管理する変数
function setup() {
rec = new p5.SpeechRec(); // 音声認識用のオブジェクトを作成
rec.onResult = showResult; // 認識されたらshowResultが実行される
print('しゃべってください')
rec.start(); // 認識開始
}
function draw() {
}
function showResult() { // 認識されたら実行される
alert(rec.resultString); // 認識結果を表示
}