SpeechSynthesisErrorEvent
Baseline
広く利用可能
この機能は広く実装されており、多くのバージョンの端末やブラウザーで動作します。2018年10月以降、すべてのブラウザーで利用可能です。
SpeechSynthesisErrorEvent はウェブ音声 API のインターフェイスで、発話サービスの SpeechSynthesisUtterance オブジェクトの処理中に発生したエラーに関する情報を保持します。
コンストラクター
SpeechSynthesisErrorEvent()-
新しい
SpeechSynthesisErrorEventイベントを生成します。
インスタンスプロパティ
SpeechSynthesisErrorEvent は SpeechSynthesisEvent インターフェイスから派生しており、親インターフェイスである Event からプロパティを継承しています。
SpeechSynthesisErrorEvent.error読取専用-
音声合成に失敗したことを示すエラーコードを返します。
インスタンスメソッド
SpeechSynthesisErrorEvent は SpeechSynthesisEvent インターフェイスから派生しており、親インターフェイスである Event からメソッドを継承しています。
例
js
const synth = window.speechSynthesis;
const inputForm = document.querySelector("form");
const inputTxt = document.querySelector("input");
const voiceSelect = document.querySelector("select");
const voices = synth.getVoices();
// ...
inputForm.onsubmit = (event) => {
event.preventDefault();
const utterThis = new SpeechSynthesisUtterance(inputTxt.value);
const selectedOption =
voiceSelect.selectedOptions[0].getAttribute("data-name");
for (let i = 0; i < voices.length; i++) {
if (voices[i].name === selectedOption) {
utterThis.voice = voices[i];
}
}
synth.speak(utterThis);
utterThis.onerror = (event) => {
console.log(
`An error has occurred with the speech synthesis: ${event.error}`,
);
};
inputTxt.blur();
};
仕様書
| 仕様書 |
|---|
| Web Speech API> # speechsynthesiserrorevent> |