From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/speechrecognitionerror/index.html | 85 ++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 files/ja/web/api/speechrecognitionerror/index.html (limited to 'files/ja/web/api/speechrecognitionerror') diff --git a/files/ja/web/api/speechrecognitionerror/index.html b/files/ja/web/api/speechrecognitionerror/index.html new file mode 100644 index 0000000000..946b92cf92 --- /dev/null +++ b/files/ja/web/api/speechrecognitionerror/index.html @@ -0,0 +1,85 @@ +--- +title: SpeechRecognitionError +slug: Web/API/SpeechRecognitionError +tags: + - API + - Experimental + - Interface + - Reference + - SpeechRecognitionError + - Web Speech API + - recognition + - speech +translation_of: Web/API/SpeechRecognitionError +--- +

{{APIRef("Web Speech API")}}{{SeeCompatTable}}

+ +

Web Speech APISpeechRecognitionError インターフェイスは、認識サービスからのエラーメッセージを表します。

+ +

プロパティ

+ +

SpeechRecognitionError は、親インターフェイスである {{domxref("Event")}} からのプロパティも継承します。

+ +
+
{{domxref("SpeechRecognitionError.error")}} {{readonlyinline}}
+
起こったエラーの種類を返します。
+
{{domxref("SpeechRecognitionError.message")}} {{readonlyinline}}
+
エラーの内容が詳しく書かれたメッセージを返します。
+
+ +

+ +
var recognition = new SpeechRecognition();
+
+recognition.onerror = function(event) {
+  console.log('Speech recognition error detected: ' + event.error);
+  console.log('Additional information: ' + event.message);
+}
+ +

仕様

+ + + + + + + + + + + + + + +
仕様書策定状況備考
{{SpecName('Web Speech API', '#speechreco-error', 'SpeechRecognitionError')}}{{Spec2('Web Speech API')}} 
+ +

ブラウザーの実装状況

+ +
+ + +

{{Compat("api.SpeechRecognitionError")}}

+
+ +

Firefox OS の許可設定

+ +

アプリ内で音声認識を使用するには、以下の許可設定を manifest で指定する必要があります:

+ +
"permissions": {
+  "audio-capture" : {
+    "description" : "Audio capture"
+  },
+  "speech-recognition" : {
+    "description" : "Speech recognition"
+  }
+}
+ +

特権アプリも必要なため、以下も同様に含める必要があります:

+ +
  "type": "privileged"
+ +

関連項目

+ + -- cgit v1.2.3-54-g00ecf