Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. SpeechRecognition
  4. stop()

SpeechRecognition: stop() method

Limited availability

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

Thestop() method of theWeb Speech API stops the speech recognition service from listening for incoming audio and attempts to return aSpeechRecognitionResult based on the results captured so far.

Syntax

js
stop()

Parameters

None.

Return value

None (undefined).

Examples

js
const recognition = new SpeechRecognition();const diagnostic = document.querySelector(".output");const bg = document.querySelector("html");const startBtn = document.querySelector("button");startBtn.onclick = () => {  recognition.start();  console.log("Ready to receive a color command.");};recognition.onspeechend = () => {  recognition.stop();  console.log("Speech recognition has stopped.");};

Specifications

Specification
Web Speech API
# dom-speechrecognition-stop

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp