SpeechRecognitionErrorEvent
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The SpeechRecognitionErrorEvent interface of the Web Speech API represents error messages from the recognition service.
Properties
SpeechRecognitionErrorEvent also inherits properties from its parent interface, Event.
SpeechRecognitionErrorEvent.errorRead only-
Returns the type of error raised.
SpeechRecognitionErrorEvent.messageRead only-
Returns a message describing the error in more detail.
Examples
var recognition = new SpeechRecognition();
recognition.onerror = function(event) {
console.log('Speech recognition error detected: ' + event.error);
console.log('Additional information: ' + event.message);
}
Specifications
| Specification |
|---|
| Web Speech API # speechrecognitionerrorevent |
Browser compatibility
BCD tables only load in the browser