Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. SpeechRecognitionEvent

SpeechRecognitionEvent

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

TheSpeechRecognitionEvent interface of theWeb Speech API represents the event object for theresult andnomatch events, and contains all the data associated with an interim or final speech recognition result.

Event SpeechRecognitionEvent

Constructor

SpeechRecognitionEvent()

Creates a newSpeechRecognitionEvent object.

Instance properties

SpeechRecognitionEvent also inherits properties from its parent interface,Event.

SpeechRecognitionEvent.resultIndexRead only

Returns the lowest index value result in theSpeechRecognitionResultList "array" that has actually changed.

SpeechRecognitionEvent.resultsRead only

Returns aSpeechRecognitionResultList object representing all the speech recognition results for the current session.

Examples

This code is excerpted from ourSpeech color changer example.

js
recognition.onresult = (event) => {  const color = event.results[0][0].transcript;  diagnostic.textContent = `Result received: ${color}.`;  bg.style.backgroundColor = color;};

Specifications

Specification
Web Speech API
# speechreco-event

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp