--- title: Web Speech API slug: Web/API/Web_Speech_API tags: - API - Experimental - Landing - Reference - Web Speech API - recognition - speech - synthesis translation_of: Web/API/Web_Speech_API ---
{{DefaultAPISidebar("Web Speech API")}}{{seecompattable}}

Web Speech API は、音声データをウェブアプリに組み入れることを可能にします。Web Speech API は、SpeechSynthesis (Text-to-Speech; 音声合成) と SpeechRecognition (Asynchronous Speech Recognition; 非同期音声認識) の 2 つの部分から成り立っています。

Web Speech API のコンセプトと使用法

Web Speech API は、ウェブアプリが音声データを扱えるようにします。この API には 2 つの構成要素があります。

これらの機能の使い方についての詳細は、Using the Web Speech API を参照してください。

Web Speech API インターフェイス

音声認識

{{domxref("SpeechRecognition")}}
認識サービスのコントローラーインターフェイスです。認識サービスから送信された {{domxref("SpeechRecognitionEvent")}} も扱います。
{{domxref("SpeechRecognitionAlternative")}}
音声認識サービスにより認識されている単語を表します。
{{domxref("SpeechRecognitionError")}}
認識サービスからのエラーメッセージを表します。
{{domxref("SpeechRecognitionEvent")}}
{{event("result")}} イベントおよび {{event("nomatch")}} イベントのためのイベントオブジェクトです。暫定あるいは最終の音声認識結果に関連付けられたすべてのデータを含みます。
{{domxref("SpeechGrammar")}}
認識サービスに認識してほしい言葉または言葉のパターンです。
{{domxref("SpeechGrammarList")}}
{{domxref("SpeechGrammar")}} オブジェクトのリストを表します。
{{domxref("SpeechRecognitionResult")}}
一致した一つの認識結果を表します。これには、複数の {{domxref("SpeechRecognitionAlternative")}} オブジェクトが含まれることがあります。
{{domxref("SpeechRecognitionResultList")}}
{{domxref("SpeechRecognitionResult")}} オブジェクトのリストを表します。または、{{domxref("SpeechRecognition.continuous","continuous")}} モードで結果が捕捉された場合は、一つだけになります。

音声合成

{{domxref("SpeechSynthesis")}}
音声サービスのコントローラーインターフェイスです。これは、デバイスで利用可能な合成音声についての情報を取得したり、発話の開始や一時停止などのコマンドを実行するために使用されます。
{{domxref("SpeechSynthesisErrorEvent")}}
音声サービスで {{domxref("SpeechSynthesisUtterance")}} オブジェクトの処理中に発生したあらゆるエラーについての情報を含みます。
{{domxref("SpeechSynthesisEvent")}}
音声サービスで処理されている {{domxref("SpeechSynthesisUtterance")}} オブジェクトの現在の状態についての情報を含みます。
{{domxref("SpeechSynthesisUtterance")}}
音声リクエストを表します。これは、音声サービスが読み上げるコンテンツとその読み上げ方 (言語、音声の高低、音量など) についての情報を含みます。
{{domxref("SpeechSynthesisVoice")}}
システムがサポートする音声を表します。すべての SpeechSynthesisVoice は、それ自身に関連する音声サービス (言語、名前、URI についての情報を含む) を持ちます。
{{domxref("Window.speechSynthesis")}}
SpeechSynthesisGetter と呼ばれる [NoInterfaceObject] インターフェイスの一部として定義され、Window オブジェクトによって実装されたことで、speechSynthesis プロパティは {{domxref("SpeechSynthesis")}} コントローラーへのアクセスを提供します。したがって、音声合成機能へのエントリーポイントになります。

Github 上の Web Speech API リポジトリー には、音声合成や音声認識を説明するデモが含まれています。

仕様

仕様書 策定状況 備考
{{SpecName('Web Speech API')}} {{Spec2('Web Speech API')}} 初期定義

ブラウザーの実装状況

SpeechRecognition

{{Compat("api.SpeechRecognition", 0)}}

SpeechSynthesis

{{Compat("api.SpeechSynthesis", 0)}}

関連項目