webspeech-api Questions
7
I'm using chrome Version 55.0.2883.87 m (64-bit) on Windows 10.
The following simple html file reproduces the problem and is extracted from my more complex app. It is supposed to speak the 3 words...
Circumstantial asked 9/1, 2017 at 1:13
1
Package
@kamiazya/ngx-speech-recognition
Missing Types: SpeechGrammar, SpeechGrammarList, SpeechRecognition, SpeechRecognitionErrorEvent, SpeechRecognitionEvent, webkitSpeechGrammarList, webkitSpee...
Webfooted asked 16/10, 2022 at 22:26
4
Solved
Web Speech API specification says:
text attribute
This attribute specifies the text to be synthesized and
spoken for this utterance. This may be either plain text or a
complete, well-formed S...
Krystlekrystyna asked 22/2, 2014 at 10:5
13
Solved
Following HTML shows empty array in console on first click:
<!DOCTYPE html>
<html>
<head>
<script>
function test(){
console.log(window.speechSynthesis.getVoices())
}
...
Gametangium asked 2/2, 2014 at 17:25
2
Previous questions have presented this same or similar inquiry
Can Web Speech API used in conjunction with Web Audio API?
How to access audio result from Speech Synthesis API?
Record HTML5 Speech...
Propositus asked 10/7, 2017 at 3:53
2
When I run speechSynthesis.getVoices() in Chrome, I get a list of possible voices. The list changes depending on the computer and version of Chrome.
Is there any way I can extend support and add m...
Touchstone asked 19/11, 2017 at 17:21
2
I want to see what languages are supported by web speech API and try to contribute and add other languages.
Steady asked 19/5, 2014 at 8:53
2
In examples for the Web Speech API, a grammar is always specified. For example, in MDN's colour change example, the grammar is:
#JSGF V1.0;
grammar colors;
public <color> = aqua | azure | be...
Metatherian asked 29/12, 2016 at 5:24
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
0
Calling SpeechRecognition.start automatically requests microphone permission, but is there any way to start SpeechRecognition on a custom MediaStream (e.g. from getDisplayMedia)?
Christyna asked 1/5, 2021 at 22:23
2
I have a PHP web application and am looking for an open source, high-accuracy speech-to-text recognition implementation that will take voice commands to open web pages from users. Examples: "Make S...
Constipation asked 29/5, 2018 at 10:56
2
Solved
I'm using W3C Browser Web Speech API. I search everywhere but I can't find it answer. Is there any limitation for usage?
Demonstration: https://www.google.com/intl/en/chrome/demos/speech.html
Stouthearted asked 10/1, 2017 at 7:14
1
I am using webkitSpeechRecognition instance to access the native speech recognition in Chrome. The problem is that the Web Speech API specification does not cover the topic of profanity filtering, ...
Guanine asked 8/2, 2015 at 21:33
4
Solved
After reading the documentation of webkitSpeechRecognition (voice recognition in Javascript) I tried to implement it in Angular 2.
But when I did this:
const recognition = new webkitSpeechRecogni...
Weinert asked 28/6, 2016 at 22:1
1
Solved
I have a simple app that should read out text entered into an input field in a selected language: https://speech-synthesis-demo.glitch.me/
This seems to work well on desktop in multiple browsers. ...
Cephalic asked 15/5, 2020 at 9:50
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
1
mounted() {
window.SpeechRecognition = window.webkitSpeechRecognition ||
window.SpeechRecognition;
let finalTranscript = "";
let recognition = new window.SpeechRecognition();
recognition.int...
Fernandes asked 3/3, 2020 at 6:40
2
Solved
How to use SpeechSynthesisUtterance() and window.speechSynthesis.speak() at chromium browser?
var msg = new SpeechSynthesisUtterance( "Hello I am browser" );
window.speechSynthesis.speak( msg );
...
Glasscock asked 17/5, 2017 at 1:13
4
I have this problem where in firefox the speech gets cut off if the page is auto-refreshed, but in google chrome it finishes saying the speech even if the page is auto-refreshed. How do I fix it so...
Ardelia asked 23/1, 2019 at 13:37
2
Solved
I am working on web speech recognition.
And I found that Google provide a API which call "Google speech API V2" to developer. But I notice there is a limit on every day to use it.
After that I fo...
Mineral asked 11/9, 2015 at 6:53
3
Solved
So I am using a modified script to try to play some text from the Web Speech API.
The code was originally here:
Chrome Speech Synthesis with longer texts
Here's my modified variant:
function go...
Tactic asked 2/8, 2018 at 22:21
1
When using the speak function in the Web Speech API, in Chrome the speaking stops abruptly after a few seconds, in the middle of the text given to it, in a seemingly random place (without reaching ...
Anisaanise asked 18/3, 2017 at 14:40
2
Edit, Updated
see my main goal is first to let the user request a specific (book_name) by the voice (speech to text) then the book open to read it loudly (text to speech) and the last step is to p...
Ploss asked 4/11, 2017 at 18:5
1
Is it possible to use W3C Web Speech API to write Javascript code which generates audio file (wav, ogg or mp3) with voice speaking given text? I mean, I want to do something like:
window.speechSyn...
Coyote asked 2/8, 2016 at 18:13
1
While trying to determine a solution to How to use Web Speech API at chromium? found that
var voices = window.speechSynthesis.getVoices();
returns an empty array for voices identifier.
Not ce...
Sharitasharity asked 3/6, 2017 at 16:55
1 Next >
© 2022 - 2024 — McMap. All rights reserved.