From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../speechrecognition/audiostart_event/index.html | 87 ++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 files/ja/web/api/speechrecognition/audiostart_event/index.html (limited to 'files/ja/web/api/speechrecognition/audiostart_event') diff --git a/files/ja/web/api/speechrecognition/audiostart_event/index.html b/files/ja/web/api/speechrecognition/audiostart_event/index.html new file mode 100644 index 0000000000..dc48b71745 --- /dev/null +++ b/files/ja/web/api/speechrecognition/audiostart_event/index.html @@ -0,0 +1,87 @@ +--- +title: 'SpeechRecognition: audiostart イベント' +slug: Web/API/SpeechRecognition/audiostart_event +tags: + - Event + - Reference + - SpeechRecognition + - Web Speech API + - audiostart + - onaudiostart + - イベント +translation_of: Web/API/SpeechRecognition/audiostart_event +--- +
{{APIRef("Web Speech API")}} {{SeeCompatTable}}
+ +
+

Web Speech APIaudiostart イベントは、ユーザーエージェントが会話認識のためのオーディオキャプチャを開始したときに発生します。

+
+ + + + + + + + + + + + + + + + + + + + +
バブリングなし
キャンセル不可
インターフェイス{{domxref("Event")}}
イベントハンドラー{{domxref("SpeechRecognition/onaudiostart", "onaudiostart")}}
+ +

+ +

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

+ +
var recognition = new webkitSpeechRecognition() || new SpeechRecognition();
+
+recognition.addEventListener('audiostart', function() {
+  console.log('Audio capturing started');
+});
+ +

または、 onaudiostart イベントハンドラープロパティを使用してください。

+ +
recognition.onaudiostart = function() {
+  console.log('Audio capturing started');
+}
+ +

仕様書

+ + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('Web Speech API', '#speechreco-events', 'speech recognition events')}}{{Spec2('Web Speech API')}} 
+ +

ブラウザーの対応

+ +
+ + +

{{Compat("api.SpeechRecognition.audiostart_event")}}

+
+ +

関連情報

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