aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/speechrecognitionerror/index.html
blob: 946b92cf929556864a557487936de6e7db57b83a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
title: SpeechRecognitionError
slug: Web/API/SpeechRecognitionError
tags:
  - API
  - Experimental
  - Interface
  - Reference
  - SpeechRecognitionError
  - Web Speech API
  - recognition
  - speech
translation_of: Web/API/SpeechRecognitionError
---
<p>{{APIRef("Web Speech API")}}{{SeeCompatTable}}</p>

<p><a href="/ja/docs/Web/API/Web_Speech_API">Web Speech API</a><strong><code>SpeechRecognitionError</code></strong> インターフェイスは、認識サービスからのエラーメッセージを表します。</p>

<h2 id="Properties" name="Properties">プロパティ</h2>

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

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

<h2 id="Examples" name="Examples"></h2>

<pre class="brush: js">var recognition = new SpeechRecognition();

recognition.onerror = function(event) {
  console.log('Speech recognition error detected: ' + event.error);
  console.log('Additional information: ' + event.message);
}</pre>

<h2 id="Specifications" name="Specifications">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">策定状況</th>
   <th scope="col">備考</th>
  </tr>
  <tr>
   <td>{{SpecName('Web Speech API', '#speechreco-error', 'SpeechRecognitionError')}}</td>
   <td>{{Spec2('Web Speech API')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの実装状況</h2>

<div>


<p>{{Compat("api.SpeechRecognitionError")}}</p>
</div>

<h3 id="Firefox_OS_permissions" name="Firefox_OS_permissions">Firefox OS の許可設定</h3>

<p>アプリ内で音声認識を使用するには、以下の許可設定を <a href="/docs/Web/Apps/Build/Manifest">manifest</a> で指定する必要があります:</p>

<pre class="brush: json">"permissions": {
  "audio-capture" : {
    "description" : "Audio capture"
  },
  "speech-recognition" : {
    "description" : "Speech recognition"
  }
}</pre>

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

<pre class="brush: json">  "type": "privileged"</pre>

<h2 id="See_also" name="See_also">関連項目</h2>

<ul>
 <li><a href="/ja/docs/Web/API/Web_Speech_API">Web Speech API</a></li>
</ul>