Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. SpeechRecognition
  4. nomatch

SpeechRecognition: nomatch event

Limited availability

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

Thenomatch event of theWeb Speech API is fired when the speech recognition service returns a final result with no significant recognition.

This may involve some degree of recognition, which doesn't meet or exceed theconfidence threshold.

Syntax

Use the event name in methods likeaddEventListener(), or set an event handler property.

js
addEventListener("nomatch", (event) => { })onnomatch = (event) => { }

Event type

ASpeechRecognitionEvent. Inherits fromEvent.

Event SpeechRecognitionEvent

Event properties

In addition to the properties listed below, properties from the parent interface,Event, are available.

SpeechRecognitionEvent.emmaRead only

Returns an Extensible MultiModal Annotation markup language (EMMA) — XML — representation of the result.

SpeechRecognitionEvent.interpretationRead only

Returns the semantic meaning of what the user said.

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

You can use thenomatch event in anaddEventListener method:

js
const recognition = new (SpeechRecognition || webkitSpeechRecognition)();recognition.addEventListener("nomatch", () => {  console.error("Speech not recognized");});

Or use theonnomatch event handler property:

js
recognition.onnomatch = () => {  console.error("Speech not recognized");};

Specifications

Specification
Web Speech API
# eventdef-speechrecognition-nomatch
Web Speech API
# dom-speechrecognition-onnomatch

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp