web api interface
SpeechRecognitionErrorEvent
The SpeechRecognitionErrorEvent interface of the Web Speech API represents error messages from the recognition service.
Constructor
SpeechRecognitionErrorEvent()- : Creates a new
SpeechRecognitionErrorEventobject.
- : Creates a new
Instance properties
SpeechRecognitionErrorEvent also inherits properties from its parent interface, Event.
errorRead only- : Returns the type of error raised.
messageRead only- : Returns a message describing the error in more detail.
Examples
const recognition = new SpeechRecognition();
recognition.onerror = (event) => {
console.log(`Speech recognition error detected: ${event.error}`);
console.log(`Additional information: ${event.message}`);
};
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.