text-to-speech Questions
4
Solved
I have been trying for a while to get Phonetic or Phoneme pronunciation working with google's text to speech but have not managed to get it performing consistently.
I have managed to get limited r...
Overcash asked 16/4, 2019 at 13:34
2
Solved
I've written a function that takes in 2 strings (statement, question) and uses Google TTS to read that out loud.
I'm using the flutter_tts: ^1.3.0 package and tried the setVoice method to change th...
Polysepalous asked 16/11, 2020 at 15:33
4
Solved
Are there any libraries in Python that does or allows Text To Speech Conversion using Mac Lion's built in text to speech engine?
I did google but most are windows based. I tried pyttx.
I tried to r...
Duty asked 6/10, 2012 at 9:39
1
Using the javascript Speech Synthesis API, you can make the browser speak some text:
var message = new SpeechSynthesisUtterance('foo bar');
speechSynthesis.speak(message);
However I would like t...
Passover asked 10/12, 2014 at 19:39
4
Working with OpenAI API and below is my simple code, but getting deprecation warning for 'steam_to_file' method.
Code -
from openai import OpenAI
from pathlib import Path
client = OpenAI(
api_key...
Hypocrite asked 7/2 at 5:47
2
Solved
I have a machine with a Quadro P5000 graphics card, running Windows 10. I'd like to train a TTS voice on this system. What do I need to install to make this work?
Search asked 20/3, 2021 at 20:48
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
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
8
Solved
Is there a way to use the MS Speech utility from command line? I can do it on a mac, but can't find any reference to it on Windows XP.
Rosiorosita asked 24/6, 2009 at 20:4
2
Solved
I am aware of libraries like Google Text to Speech. However, the same does not work in Colab. I recently came across a complex notebook in Colab https://colab.research.google.com/github/tugstugi/py...
Deferral asked 19/8, 2019 at 19:47
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 trying to use whisper AI on my computer. I have a NVIDIA GPU RTX 2060, installed CUDA and FFMPEG.
I'm running this code :
import whisper
model = whisper.load_model("medium")
result =...
Zebrass asked 1/4, 2023 at 19:32
2
I have an app for people with low vision that relies heavily on TTS. However for some reason when I use the speak method TTS randomly skips the first few letters of a sentence or speaks the first f...
Cass asked 7/9, 2015 at 23:18
0
I am encountering a crash in my Flutter app related to a custom Flutter plugin that handles Text-to-Speech functionality on the Android side. Specifically, after the app has been running for approx...
Reportorial asked 13/7, 2023 at 16:46
2
In my application , I wish to know if there is any tts engine that can read hindi text .
my code
tts.setLanguage(Locale.US);
unfortunately Hindi is not supported by Android.
See the list of Loc...
Newman asked 17/5, 2013 at 9: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
3
Solved
I can not find an answer to what should be a very simple task. Can someone explain to me the best way to turn off accessibility (talkback) for an individual element in android?
I have a TextView t...
Popcorn asked 24/2, 2014 at 19:34
3
Solved
The say command-line utility seems to be unaware of Siri voices as of macOS 11 (Big Sur):
say -v '?' doesn't list Siri voices.
Targeting a Siri voice explicitly doesn't work:
say -v NoraSiri hi...
Hadfield asked 9/4, 2020 at 13:33
8
Solved
I'm implementing an Interactive Voice Response application on Android. I would like to know how to determine when the tts.speak() function has done talking so I can call my speech recognizer functi...
Laraelaraine asked 11/1, 2011 at 13:59
15
I want to know how can I use Google Text-to-Speech API in my .NET project. I think I need to call a URL to use the web service, but the idea for me is not clear. Can anyone help?
Telescopy asked 27/3, 2012 at 15:56
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
3
Using addSpeech() in android TTS, you can link a certain text to a sound file. Then, the TTS engine plays the file instead of synthesizing the sound of the text (also in question at Android TTS(Tex...
Anterior asked 9/9, 2017 at 5:35
3
Solved
When trying to use pyttsx3 I can only use English voices. I would like to be able to use Dutch as well.
I have already installed the text to speech language package in the windows settings menu. Bu...
Ludwog asked 31/1, 2021 at 8:37
2
Solved
Good day.
I'm having trouble with inconsistencies of my speech synthesis speaking long texts.
I'm trying to make text-to-speech in English and Mandarin. When I specify utterance.lang = 'en-US'; I...
Hypoxanthine asked 27/8, 2019 at 3:32
4
I implemented the text to speech in language "Hindi" Its an Indian language my application which is working fine till the API level 29.
Its working fine for English but not for the Hindi....
Electro asked 19/9, 2020 at 9:49
1 Next >
© 2022 - 2024 — McMap. All rights reserved.