Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. SpeechRecognitionResultList

SpeechRecognitionResultList

Limited availability

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

TheSpeechRecognitionResultList interface of theWeb Speech API represents a list ofSpeechRecognitionResult objects, or a single one if results are being captured innon-continuous mode.

Instance properties

SpeechRecognitionResultList.lengthRead only

Returns the length of the "array" — the number ofSpeechRecognitionResult objects in the list.

Instance methods

SpeechRecognitionResultList.item

A standard getter that allowsSpeechRecognitionResult objects in the list to be accessed via array syntax.

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-resultlist

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp