222 questions
4
votes
1
answer
120
views
Why aren't SpeechSynthesisUtterance events firing when using Chrome's Google voices? And also not speaking on first load?
I'm running into two bugs with Speech Synthesis on Google Chrome Version 135.0.7049.42 on an M1 MacBook Pro running MacOS 15.1.1 (24B91). The first is that when using the asynchronous/online voices ...
1
vote
0
answers
40
views
How to highlight the spoken word in Js?
I have multiple long Arabic well written articles with diacritics.
I also have an audio file of a woman reading the article clearly.
I have added the audio to the article but I want when I play the ...
0
votes
0
answers
81
views
Web Speech API: Setting a Custom Audio Output Device (Speaker) for TTS Playback with sinkId
I'm building a Text-to-Speech (TTS) component in React, where I want to specify the audio output device using sinkId (e.g., a selected speaker). Despite setting sinkId on the audio element, the audio ...
0
votes
0
answers
65
views
Web speech API's isFinal property is automatically change to true value?
I've implemented the Web Speech API in my React application to transcribe speech-to-text functionality. In the user interface, I have a single button that serves as both the start and stop control for ...
0
votes
1
answer
44
views
Progress control in Web Speech API
I am using Web Speech API to read a text (documentation link here).
Is there a way of displaying this kind of progress control?
The idea is that user sees the progress of the read, and can jump to ...
0
votes
0
answers
78
views
Is it possible / how to use the web speech API for a browsers tab instead of microphone?
I'm developing a Chrome extension aimed at transcribing speech from an active tab in the user's browser using the Web Speech API. I've achieved speech-to-text functionality using the user's microphone ...
0
votes
0
answers
40
views
Using Web Speech API in reveal.js slides
I have created slides in reveal.js, where each slide corresponds to 'section' elements.
Within each slide there are 'span' elements including some text. I'm using Web Speech API for reading the text. ...
0
votes
0
answers
398
views
Web Speech API - Speech Recognition does not return alternatives in mobile
I am trying to implement Web Speech API - Speech Recognition in my web app with the following parameters:
vSearch = new webkitSpeechRecognition();
vSearch.continuous = false;
vSearch....
1
vote
1
answer
227
views
How to synchronize SpeechSynthesis and Text Color Changes in Web Project
I'm currently working on a web project using the SpeechSynthesis API to read paragraphs of text on a webpage. I've been trying to synchronize the spoken words with the color changes in the text, but I'...
1
vote
0
answers
458
views
iOS 17.0.3: Web Speech recognition does not work properly
I have iPhone 15 Pro with iOS 17.0.3 version.
Web speech recognition does not work most of the time on Safari.
Microphone turns on properly, but what you speak loud and clear on the microphone does ...
1
vote
0
answers
137
views
IOS:Why doesn't Web Speech work with a wireless headset?
Background
I encountered an issue while attempting to use the Web Speech API with a wireless headset. The problem is that Web Speech often fails to recognize my voice, resulting in no output and ...
1
vote
0
answers
189
views
Web speech api not working on android chrome and some safari version
I'm trying to use Web speech api to reconige text. It works perfectly on desktop chrome and iphone 14 safari. But on android chrome and iphone 10 safari, it doesn't work. I tried with ssl. Problem is ...
1
vote
0
answers
228
views
Android: Why does the video abruptly pause when starting web speech recognition on Chrome?
Background
The issue at hand involves a scenario where a video abruptly stops playing when web speech recognition is initiated, triggering the 'pause' event in Video.js. Then, the video does not ...
2
votes
0
answers
98
views
iOS web speech recognition.onresult issue
I am trying to code an 8th Wall web app which uses speech recognition. I am having a lot of inconsistencies in iOS from one iPhone model to another one, where in some of them the speech result seems ...
-2
votes
1
answer
112
views
How to record speech on ElectronJS
Im developing a text-to-speech application using ElectronJS. Im using the Web Speech API to create the speech. I want to record that speech. How could I do it?
I tried tons of code but none worked :(