webkitspeechrecognition Questions
1
Solved
I am trying to use webkitSpeechRecognition with the continuous setting set to false (when the user stops speaking, webkitSpeechRecognition auto stops) but when I stop speaking and the webkitSpeechR...
Gasworks asked 19/2, 2023 at 7:29
3
Solved
Is it possible to tell if another Chrome tab is using webkitSpeechRecognition?
If you try to use webkitSpeechRecognition while another tab is using it, it will throw an error "aborted" without an...
Abutilon asked 8/7, 2016 at 7:43
2
Solved
I'm making a bot to listen to my voice.
So i did :
this.recognition = new webkitSpeechRecognition();
I can do this to start listen :
this.recognition.start();
And this to stop listen :
this....
Bearberry asked 28/5, 2017 at 11:30
2
I'm trying to make use of the SpeechRecognition interface of the Web Speech API. It works fine on the desktop version of Chrome but I can't get it to detect any audio on the Android version. After ...
Bertie asked 28/2, 2020 at 4:46
3
Recently (in the past 1.5 weeks) the javascript library WebkitSpeechRecognition has refused to work properly. I've tested other electron applications that utilize the library (smart-mirror by evan ...
Helot asked 25/3, 2016 at 5:14
2
Solved
I'm using a simple Speech to text detection with webkitSpeechRecognition.
This code works great on Windows Desktop.
But - on Android Chrome browser - When starting detection, the microphone on the ...
Flattery asked 9/2, 2017 at 11:0
3
I am wondering if it is possible to run the Web Speech API in node.js? Since node is Javascript based, I was assuming it could be used, but I can't find a way to use it natively in node. Would ther...
Cousins asked 2/2, 2017 at 16:10
2
Does it required to create new instance of SpeechRecognition after each speech?
var recognition = new SpeechRecognition();
recognition.start();
Or just stop() and call the start() func again?
r...
Auberon asked 20/3, 2017 at 4:15
2
We're using the webkitSpeechRecognition API in Chrome. Since this is a prototype application, we're quite happy to support only Chrome, so we detect support for the API by doing a window.hasOwnProp...
Damper asked 20/4, 2016 at 10:52
2
I found, that speech recognition API duplicates result phrases on my Android (and does not duplicate on desktop).
For each phrase said, it returns two results. First one is
and the second one i...
Hyperspace asked 31/1, 2016 at 10:2
1
I'm trying to do a continuous speech to text transcription but can't seem to get webkitSpeechRecognition working as advertised. It seems to stop recording randomly (typically after a long duration ...
Flitter asked 15/1, 2016 at 19:14
2
Solved
I have an speech recognition (using webkitSpeechRecognition) application which works great when ran on the standalone chrome browser.
I converted my application into a electron package and it stop...
Constitutive asked 3/10, 2016 at 15:23
1
© 2022 - 2024 — McMap. All rights reserved.