web api interface
SpeechRecognitionEvent
The SpeechRecognitionEvent interface of the Web Speech API represents the event object for the result and nomatch events, and contains all the data associated with an interim or final speech recognition result.
Constructor
SpeechRecognitionEvent()- : Creates a new
SpeechRecognitionEventobject.
- : Creates a new
Instance properties
SpeechRecognitionEvent also inherits properties from its parent interface, Event.
resultIndexRead only- : Returns the lowest index value result in the
SpeechRecognitionResultList“array” that has actually changed.
- : Returns the lowest index value result in the
resultsRead only- : Returns a
SpeechRecognitionResultListobject representing all the speech recognition results for the current session.
- : Returns a
Examples
This code is excerpted from our Speech color changer example.
recognition.onresult = (event) => {
const color = event.results[0][0].transcript;
diagnostic.textContent = `Result received: ${color}.`;
bg.style.backgroundColor = color;
};
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.