speech recognition support in the web browser engine WebKit
Questions tagged [webkitspeechrecognition]
83 questions
0
votes
1 answer
SpeechRecognition: Looping through a set of questions; waiting for each 'oral' response before asking next question
I have a questionnaire of 6 questions. These are presented through speechSynthesis. After each question, I need to wait for an oral response that I will process, before presenting the next question. My code is an attempt at it. Code DOES go…

J.R
- 3
- 1
0
votes
1 answer
Speech Recognition for Quranic/Classic Arabic
I am making a speech to text ASP.NET Core Web application that recognises Quranic/Classic Arabic using WebkitSpeechRecognition
For example: When I speak the word(i know how it is spoken) shown in the picture, I should get not . At the moment only…

user9951936
- 23
- 6
0
votes
1 answer
Setting webkitspeechRecognition to state and changing language
So, I have set
let recognition = new SpeechRecognition;
recognition.continuous = true;
recognition.interimResults = false;
recognition.lang = 'en-US';
this.setState({
recognition
});
console.log(this.state.recognition) gives me the…

CaptainObvious
- 79
- 1
- 7
0
votes
1 answer
Check if chrome WebkitSpeechRecognition is initialised?
I'm currently developing a web application using the WebkitSpeechRecognition API.
The problem is, that when I first initialise the API with .start() and begin yelling into my microphone, it usually takes more than 20 seconds until the first…

Don_M
- 45
- 6
0
votes
1 answer
C# Using Dictation Grammar and Predefined Grammar alternatively
I wanted to create a desktop application in C# that could make use of both Dictation Grammar and Predefined Grammar.To achieve functionality similar to that of Hound by SoundCloud or Google Now or Cortana or Siri for instance. So here's how I intend…

Sushrit Pasupuleti
- 145
- 1
- 15
0
votes
1 answer
Cannot pass tests when using webkitSpeechRecognition
I am using google's api webkitSpeechRecognition and because this is a chrome browser only api, when I run tests on my application it fails because it cannot find the webkitSpeechRecognition variable. When I run the tests on chrome they pass fine,…

FutoRicky
- 903
- 2
- 9
- 22
0
votes
1 answer
How can i trigger and inject the value to the router function
I have the following issue I poll a file for words, when found, I want to trigger a match using the trigger function and direct a match to the molly map function, currently the script trigger from voice using the webKitSpeechRecon.
// inject fun…
user2650420
-1
votes
1 answer
Navigate to view based on text/speech
I am currently looking into implementing a feature where users of my application can navigate to a different part of the site by entering text or using speech. The following code is used in my project using google's speech recognition API, and it…

Plumbus
- 31
- 1
- 1
- 6