Questions tagged [webkitspeechrecognition]

speech recognition support in the web browser engine WebKit

83 questions
2
votes
0 answers

Get voice from webkitspeechrecognition

I want to get voice recorded during speech recognition. Based on confidence of recognized speech, the program will save or deny user's speech. To do above I have two choices: Record user's voice from browser and send to Node JS server. Then post…
2
votes
1 answer

Web Speech API - Speak again (reset sentence)

i use the webkitSpeechRecognition() to create my own little voice recorder. Here is a demo (works only with chrome!) http://jsfiddle.net/gsu4aod2/ Say a sentence and 1a.) if the text correct, click on the "add sentence" button 1b.) if the text…
Peter
  • 11,413
  • 31
  • 100
  • 152
1
vote
0 answers

How to implement real-time transcription along with speaker Identification for google meet

I'm working on developing a tool that can automatically join a Google Meet session, record the audio, and generate real-time notes that are aware of who is speaking. The tool should be able to identify speakers and accurately associate their spoken…
1
vote
0 answers

How to convert Audio Mp3 File to Text in javascript?

I am extracting text with voice (mic input) which is working fine. But i want to convert audio file into text. So, where i will add code for get audio file and convert into text auto. below is my code, i just want to browse mp3 or .wav file and by…
1
vote
1 answer

How to pause speech recognition (JS SpeechRecognition) before audio is played by the computer and then resume speech recognition after being played?

Is there a way to pause and resume speech recognition in webkitSpeechRecognition when audio is played by the computer? The computer right now seems to be confusing what is user input via the microphone and audio output from a wav file. Right now I…
sperfume
  • 31
  • 5
1
vote
0 answers

I am always getting network error in recongition.onerror() Listener in Javascript Speech Recognition

I am creating one Application where I want to ask multiple question to user as Voice input using speech Recognition in JavaScript,But When user gives first answer then Mike listens for long time even after The User stop speaking and in…
1
vote
0 answers

SpeechRecognition event listener on mac Safari

I am building an application using the Web API SpeechRecognition, but onspeechstart and onspeechend listener are not working. https://developer.mozilla.org/ja/docs/Web/API/SpeechRecognition The version of Safari is 15.0. The relevant code is as…
1
vote
0 answers

Chrome's webkitSpeechRecognition API doesn't give results when running from dockerized environment

I want to use Google Chrome's built in webkitSpeechRecognition API from a Node.js application by managing a headless Playwright browser. This set-up works fine if I am running the app from my machine: Playwight browser gets opened, and i can access…
1
vote
0 answers

webkitSpeechRecognition Return "Network" Error in Electron

I made an app for speech recognition using Web.Speech.Api and it works good in Chrome. But in electron my app sends back an error with message "network". How can I use Web.Speech.Api in electron ? Does anybody have any experience with this…
1
vote
2 answers

SpeechRecognition does not work on Android/Mobile Chrome but does on Desktop?

According to https://developer.mozilla.org/en-US/docs/Web/API/Web_Speech_API, the Web Speech API should work on Chrome for Android, but it does not. On desktop, it works properly and asks for permissions to use the microphone before listening. Is…
1
vote
1 answer

How can I implement webkitSpeechRecognition in vuejs in a simple way?

The best I could find is this demo, but it is not very clear for me. Could you share a very simple implementation?
Daniel
  • 1,189
  • 2
  • 12
  • 30
1
vote
1 answer

How do I make speech recognition work on flutter web

I am using flutter to build a speech recognition app that works on ios and android but it's not working on the web. So I decided to add an app.js file to the web folder so I can use it in my dart file. Am able to get other functions in this file to…
1
vote
0 answers

SpeechRecognition API's grammar not functioning properly

I have a following problem: I create a grammar string out of lyrics on a song. Then I set up (webkit)SpeechRecognition grammar like: const grammars = new SpeechGrammarList(); grammars.addFromString(grammarString, 1); const config = { lang:…
1
vote
0 answers

Can't use results from speech recognition

I want to add a speech recognition in Angular 7 using the webkitSpeechRecognition. I get the value from the speech but the problem is that I can't use it outside of vSearch.onresult. I tried to use the variable "result" in the getResult() function…
1
vote
0 answers

How to start webkitSpeechRecognition on CefSharp browser for wpf

I've created a javascript page and when I load that page inside chrome browser I am able to start webkitSpeechRecognition. However when I call that url with CefSharp browser for winform, It does not start the webkitSpeechRecognition. Could you…
vishal
  • 596
  • 2
  • 12
  • 31