speech-synthesis Questions
2
Solved
I was able to run SpeechRecognition in TypeScript by creating interface as below, and it is working fine:
namespace CORE{
export interface IWindow extends Window{
webkitSpeechRecognition: any;
...
Absenteeism asked 19/1, 2017 at 11:29
4
I'm trying to use AV Speech Synthesizer on an ARKit app (I've never used it before), but I keep getting the same error message "Unable to list voice folder."
I saw the same question being...
Kennakennan asked 27/7, 2023 at 3:10
8
Solved
I used speechSynthesis API in this way:
speechSynthesis.speak(new SpeechSynthesisUtterance("hello world"));
But right now I get error after update Google Chrome:
[Deprecation] speechSynthesis...
Forespent asked 19/1, 2019 at 8:44
2
I have created an app with speech voice feature using AVSpeechSynthesizer & displaying a list of languages from AVSpeechSynthesisVoice: speechVoices() function in a TableView. The user can sele...
Studious asked 9/3, 2016 at 21:3
3
Solved
Is it possible to select the word that is being read while using the SpeechSynthesisUtterance API?
Is there an event I can use to get the current spoken word and cursor position?
Here is what I...
Lashay asked 11/5, 2018 at 4:2
2
I'm using the speech synthesis API on Android-Chrome. The issue is that although there are 4 English voices available, it is always US English that is used by the browser, no matter what the code s...
Eisk asked 24/10, 2018 at 17:42
4
I am trying out a simple example with Speechsynthesis.
<script>
voices = window.speechSynthesis.getVoices()
var utterance = new SpeechSynthesisUtterance("Hello World");
utterance.voice = vo...
Radio asked 9/3, 2017 at 11:46
2
Currently, I'm making a simple app where text is spoken using the speech synthesis API. I want to highlight the words (bold) as they are being spoken. I currently have a very basic implementation d...
Hecate asked 30/6, 2016 at 10:28
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
5
Solved
Is it possible to install and configure some male voices on android.speech.tts.Voice? I have read some news that Android had made some available recently, but I can't find or configure any. All the...
Insipience asked 17/4, 2016 at 19:33
5
I am developing an application that requires me to use text to speech in the web browser. I am using the HTML5 Speech Synthesis for it. On Google Chrome the code runs fine, with all the available v...
Blazon asked 7/10, 2017 at 6:28
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
6
This code is working but I'm only able to switch between the voices which came preInstalled in Microsoft Windows. These voices are "Microsoft David Mobile" and "Microsoft Zira Mobile".
Later I in...
Dee asked 1/7, 2017 at 6:43
3
Is it possible, programatically, to take someone's voice sample and produce a unique tone/property that could be used to create a synthesised speech?
For example, person A records himself. A...
Paddle asked 8/4, 2014 at 17:29
3
Solved
I'm generating speech through Google Cloud's text-to-speech API and I'd like to highlight words as they are spoken.
Is there a way of getting timestamps for spoken words or sentences?
Gutbucket asked 24/3, 2019 at 4:50
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
9
I'm trying to install TTS package by using this. Everything was okay until I tried to execute the following command:
import pyttsx
I got back this error:
File "/usr/local/lib/python3.4/dist-pac...
Pergrim asked 13/4, 2015 at 21:14
9
Solved
I'm using the Speech Synthesis API on Google Chrome v34.0.1847.131. The API is implemented in Chrome starting in v33.
The text-to-speech works for the most part, except when assigning a callback t...
Unaunabated asked 6/5, 2014 at 0:17
2
Solved
using the browser api speechSynthesis.resume() I'm trying to resume a paused speech on android chrome
I've tested the code below on chrome desktop version 78.0.3904.97 on mac os mojave and it resu...
Dannica asked 20/11, 2019 at 11:59
2
I recently implemented a basic web app which relied on Google's TTS URL to generate clear MP3 files for playback on the front end.
This has since been subject to an additional security check, mea...
Gounod asked 25/8, 2015 at 0:21
4
Solved
I am writing a simple spelling test app using the HTML5 SpeechSynthesis API. The text I would like my app to say is something like the following: "The spelling word is Cat. The cat chased the dog."...
Arnone asked 30/1, 2016 at 17:41
12
I am getting a problem when trying to use Speech Synthesis API in Chrome 33. It works perfectly with a shorter text, but if I try longer text, it just stops in the middle. After it has stopped once...
Gulosity asked 22/2, 2014 at 0:12
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
4
i want to use the cancel Method of window.SpeechSynthesis in Chrome, to cut off an Utterance and start a new one (so you dont have to hear all utterances which are still in queue)
var test = new S...
Amby asked 8/9, 2016 at 12:53
1
Solved
In both Chrome (v72, W10) and Opera, the following snippet very occasionally does not seem to run the attached end listener to the SpeechSynthesisUtterance, maybe 1 out of 50 times the snippet is r...
Smaragdine asked 25/2, 2019 at 7:4
1 Next >
© 2022 - 2025 — McMap. All rights reserved.