Web API SpeechRecognition を使用してアプリケーションを構築していますが、onspeechstart と onspeechend リスナーが機能しません。 https://developer.mozilla.org/ja/docs/Web/API/音声認識
Safariのバージョンは15.0です。
関連するコードは次のとおりです。言語はタイプスクリプト(javascript)です。
const SpeechRecognitionrecognition = (window as any).webkitSpeechRecognition;
speechRecognizer = new SpeechRecognitionrecognition();
speechRecognizer.onspeechstart = () => {
// Process when the user starts speaking
};
speechRecognizer.onspeechend = () => {
// Processing when speech is finished
};
これらのイベント リスナーを Safari で使用するために必要な設定はありますか? 何かご存知でしたら教えていただけるとありがたいです。