Skip to content

Commit

Permalink
web\api\speechrecognition 以下を md に一括変換
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Aug 21, 2022
1 parent b37a4f7 commit efe1fe7
Show file tree
Hide file tree
Showing 22 changed files with 725 additions and 973 deletions.
74 changes: 32 additions & 42 deletions files/ja/web/api/speechrecognition/abort/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,28 @@ tags:
- speech
translation_of: Web/API/SpeechRecognition/abort
---
<p>{{APIRef("Web Speech API")}}{{ SeeCompatTable() }}</p>
{{APIRef("Web Speech API")}}{{ SeeCompatTable() }}

<p><a href="/ja/docs/Web/API/Web_Speech_API">Web Speech API</a> の <code><strong>abort()</strong></code>メソッドは音声認識サービスが、入ってくる音声を聞くことを停止します。あと、{{domxref("SpeechRecognitionResult")}} を返しません。</p>
[Web Speech API](/ja/docs/Web/API/Web_Speech_API)**`abort()`**メソッドは音声認識サービスが、入ってくる音声を聞くことを停止します。あと、{{domxref("SpeechRecognitionResult")}} を返しません。

<h2 id="Syntax" name="Syntax">構文</h2>
## 構文

<pre class="syntaxbox">mySpeechRecognition.abort();</pre>
```
mySpeechRecognition.abort();
```

<h3 id="Returns" name="Returns">返り値</h3>
### 返り値

<p>Void型</p>
Void 型

<h3 id="Parameters" name="Parameters">パラメーター</h3>
### パラメーター

<p>無し</p>
無し

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

<pre class="brush: js">var grammar = '#JSGF V1.0; grammar colors; public &lt;color&gt; = aqua | azure | beige | bisque | black | blue | brown | chocolate | coral | crimson | cyan | fuchsia | ghostwhite | gold | goldenrod | gray | green | indigo | ivory | khaki | lavender | lime | linen | magenta | maroon | moccasin | navy | olive | orange | orchid | peru | pink | plum | purple | red | salmon | sienna | silver | snow | tan | teal | thistle | tomato | turquoise | violet | white | yellow ;'
```js
var grammar = '#JSGF V1.0; grammar colors; public <color> = aqua | azure | beige | bisque | black | blue | brown | chocolate | coral | crimson | cyan | fuchsia | ghostwhite | gold | goldenrod | gray | green | indigo | ivory | khaki | lavender | lime | linen | magenta | maroon | moccasin | navy | olive | orange | orchid | peru | pink | plum | purple | red | salmon | sienna | silver | snow | tan | teal | thistle | tomato | turquoise | violet | white | yellow ;'
var recognition = new SpeechRecognition();
var speechRecognitionList = new SpeechGrammarList();
speechRecognitionList.addFromString(grammar, 1);
Expand All @@ -54,52 +57,39 @@ recognition.onspeechend = function() {
recognition.stop();
console.log('音声認識サービスが停止されました');
}
</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', '#dfn-abort', 'abort()')}}</td>
<td>{{Spec2('Web Speech API')}}</td>
<td> </td>
</tr>
</tbody>
</table>
| 仕様 | 状態 | コメント |
| ------------------------------------------------------------------------ | ------------------------------------ | -------- |
| {{SpecName('Web Speech API', '#dfn-abort', 'abort()')}} | {{Spec2('Web Speech API')}} | |

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

<div>
{{Compat("api.SpeechRecognition.abort")}}

### Firefox OS の権限

<p>{{Compat("api.SpeechRecognition.abort")}}</p>
</div>
アプリで音声認識を利用する前に、下記の権限を [manifest](/ja/docs/Web/Apps/Build/Manifest) に追加する必要があります。

<h3 id="Firefox_OS_permissions" name="Firefox_OS_permissions">Firefox OS の権限</h3>

<p>アプリで音声認識を利用する前に、下記の権限を <a href="/ja/docs/Web/Apps/Build/Manifest">manifest</a> に追加する必要があります。</p>

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

<p>privileged アプリ権限も必要なので、下記も追加が必要です。</p>
privileged アプリ権限も必要なので、下記も追加が必要です。

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

<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>
- [Web Speech API](/ja/docs/Web/API/Web_Speech_API)
67 changes: 28 additions & 39 deletions files/ja/web/api/speechrecognition/audioend_event/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,68 +14,57 @@ tags:
translation_of: Web/API/SpeechRecognition/onaudioend
original_slug: Web/API/SpeechRecognition/onaudioend
---
<div>{{APIRef("Web Speech API")}}{{SeeCompatTable}}</div>
{{APIRef("Web Speech API")}}{{SeeCompatTable}}

<p>{{domxref("SpeechRecognition")}}インターフェイスの <strong><code>onaudioend</code></strong> プロパティは、ユーザーエージェントが音声を取り込んだ後 ({{event("audioend")}}イベントが発生した時) に、実行するイベントハンドラーになります。</p>
{{domxref("SpeechRecognition")}}インターフェイスの **`onaudioend`** プロパティは、ユーザーエージェントが音声を取り込んだ後 ({{event("audioend")}}イベントが発生した時) に、実行するイベントハンドラーになります。

<h2 id="Syntax" name="Syntax">構文</h2>
## 構文

<pre class="syntaxbox">mySpeechRecognition.onaudioend = function() { ... };
</pre>
```
mySpeechRecognition.onaudioend = function() { ... };
```

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

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

recognition.onaudioend = function() {
console.log('音声認識は終了しました。');
}
</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', '#dfn-onaudioend', 'onaudioend')}}</td>
<td>{{Spec2('Web Speech API')}}</td>
<td> </td>
</tr>
</tbody>
</table>
| 仕様 | 状態 | コメント |
| ------------------------------------------------------------------------------------ | ------------------------------------ | -------- |
| {{SpecName('Web Speech API', '#dfn-onaudioend', 'onaudioend')}} | {{Spec2('Web Speech API')}} | |

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

<div>
{{Compat("api.SpeechRecognition.onaudioend")}}

### Firefox OS の権限

<p>{{Compat("api.SpeechRecognition.onaudioend")}}</p>
</div>
アプリで音声認識を利用する前に、下記の権限を [manifest](/ja/docs/Web/Apps/Build/Manifest) に追加する必要があります。

<h3 id="Firefox_OS_permissions" name="Firefox_OS_permissions">Firefox OS の権限</h3>

<p>アプリで音声認識を利用する前に、下記の権限を <a href="/ja/docs/Web/Apps/Build/Manifest">manifest</a> に追加する必要があります。</p>

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

<p>privileged アプリ権限も必要なので、下記も追加が必要です。</p>
privileged アプリ権限も必要なので、下記も追加が必要です。

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

<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>
- [Web Speech API](/ja/docs/Web/API/Web_Speech_API)
95 changes: 42 additions & 53 deletions files/ja/web/api/speechrecognition/audiostart_event/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,75 +11,64 @@ tags:
- イベント
translation_of: Web/API/SpeechRecognition/audiostart_event
---
<div>{{APIRef("Web Speech API")}} {{SeeCompatTable}}</div>
{{APIRef("Web Speech API")}} {{SeeCompatTable}}

<div>
<p><a href="/ja/docs/Web/API/Web_Speech_API">Web Speech API</a> の <code><strong>audiostart</strong></code> イベントは、ユーザーエージェントが会話認識のためのオーディオキャプチャを開始したときに発生します。</p>
</div>
[Web Speech API](/ja/docs/Web/API/Web_Speech_API)**`audiostart`** イベントは、ユーザーエージェントが会話認識のためのオーディオキャプチャを開始したときに発生します。

<table class="properties">
<tbody>
<tr>
<th scope="row">バブリング</th>
<td>なし</td>
</tr>
<tr>
<th scope="row">キャンセル</th>
<td>不可</td>
</tr>
<tr>
<th scope="row">インターフェイス</th>
<td>{{domxref("Event")}}</td>
</tr>
<tr>
<th scope="row">イベントハンドラー</th>
<td>{{domxref("SpeechRecognition/onaudiostart", "onaudiostart")}}</td>
</tr>
</tbody>
<tbody>
<tr>
<th scope="row">バブリング</th>
<td>なし</td>
</tr>
<tr>
<th scope="row">キャンセル</th>
<td>不可</td>
</tr>
<tr>
<th scope="row">インターフェイス</th>
<td>{{domxref("Event")}}</td>
</tr>
<tr>
<th scope="row">イベントハンドラー</th>
<td>
{{domxref("SpeechRecognition/onaudiostart", "onaudiostart")}}
</td>
</tr>
</tbody>
</table>

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

<p><code>audiostart</code> イベントは、 {{domxref("SpeechRecognition/onaudiostart", "onaudiostart")}} メソッドの中で使用することができます。</p>
`audiostart` イベントは、 {{domxref("SpeechRecognition/onaudiostart", "onaudiostart")}} メソッドの中で使用することができます。

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

recognition.addEventListener('audiostart', function() {
console.log('Audio capturing started');
});</pre>
});
```

<p>または、 <a href="/ja/docs/Web/API/SpeechRecognition/onaudiostart">onaudiostart</a> イベントハンドラープロパティを使用してください。</p>
または、 [onaudiostart](/ja/docs/Web/API/SpeechRecognition/onaudiostart) イベントハンドラープロパティを使用してください。

<pre class="brush: js">recognition.onaudiostart = function() {
```js
recognition.onaudiostart = function() {
console.log('Audio capturing started');
}</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-events', 'speech recognition events')}}</td>
<td>{{Spec2('Web Speech API')}}</td>
<td> </td>
</tr>
</tbody>
</table>
| 仕様書 | 状態 | 備考 |
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------ | ---- |
| {{SpecName('Web Speech API', '#speechreco-events', 'speech recognition events')}} | {{Spec2('Web Speech API')}} | |

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
## ブラウザーの対応

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

<h2 id="See_also" name="See_also">関連情報</h2>
## 関連情報

<ul>
<li><a href="/ja/docs/Web/API/Web_Speech_API">Web Speech API</a></li>
<li>{{domxref("SpeechRecognition/onaudiostart", "onaudiostart")}} イベントハンドラープロパティ</li>
</ul>
- [Web Speech API](/ja/docs/Web/API/Web_Speech_API)
- {{domxref("SpeechRecognition/onaudiostart", "onaudiostart")}} イベントハンドラープロパティ
Loading

0 comments on commit efe1fe7

Please sign in to comment.