Questions tagged [text-to-speech]

Text-to-speech or speech synthesis is the artificial production of human speech.

Speech synthesis is the artificial production of human speech. A computer system used for this purpose is called a speech synthesizer, and can be implemented in software or hardware. A text-to-speech (TTS) system converts normal language text into speech.

3705 questions
1
vote
2 answers

Is there a way of using the tag in SSML to adjust individual words without a pause (without using a post-processor)

When using the prosody tag in SSML with Google Cloud TTS, I cannot adjust the attributes of individual words without creating an unwanted pause. The code below creates a lag between 'New' and 'Video'. It has been suggested that a postprocessor can…
Incertus
  • 57
  • 1
  • 6
1
vote
0 answers

How to fix "Error loading native library. Not found in any of the possible locations" error in C#?

I was implementing the Google Text-to-Speech API and i need to put the credentials in it by using the Channel class. But when i do the credential.ToChannelCredentials() method the error Error loading native library. Not found in any of the possible…
1
vote
0 answers

Is there a way to edit formant using Web Audio API?

Currently I'm making an app using Node.js, React and AWS Polly for text to speech. Is there a way to edit formant in audio that I'm getting from Polly using Web Audio API filters or any other javascript way?
BlueCrab
  • 69
  • 3
1
vote
0 answers

How to install programmatically Windows 10 Text To Speech Voices on Windows 10 computer user?

I need to do an installer that adds new Language Voices onto a Windows 10 computer user. I read some post that mentioned this manual procedure but that doesn't help on my request because it requires that user will install the…
1
vote
1 answer

PermissionDenied: 403 Request had insufficient authentication scopes

To get the Text-to-Speech API working from a Python script on GCE, I tried using the following code running under GCE: """Synthesizes speech from the input string of text or ssml. Note: ssml must be well-formed according to: …
1
vote
1 answer

'en-GB-Wavenet-C' doesn't work [Google Cloud Text to Speech]

I'm a beginner in coding. I am using the Google Cloud Text to Speech API for Python on a small program I'm using. The function is working and I get the synthesized voice results, but the MP3 file is different from what I need. I chose…
1
vote
2 answers

text-to-speech for arabic language

text-to-speech for English language using Visual Basic 2008 Dim speech speech = CreateObject("sapi.spvoice") speech.speak(TextBox1.Text) My question, how this can be used for arabic languages ? thanks
mona jaara
  • 11
  • 1
  • 2
1
vote
1 answer

React Native - how to control sound output in iOS

I have a problem with react-native-voice and react-native-tts, after interaction with user interface sound output has changed to the internal speaker and sound is very quiet. Maybe someone has the same problem and knows how to control sound output…
Daniel Rosenberg
  • 600
  • 6
  • 11
1
vote
1 answer

how can i use japanese google tts engine in my android app without change any device setting

I am developing a Japanese study app. i wanna hear japanese pronunciation in my app. i initialize tts like this private TextToSpeech tts; private void initTTS() { tts = new TextToSpeech(this, new TextToSpeech.OnInitListener() { …
1
vote
1 answer

Parsing Watson TTS HTTP response in nodejs

Since IBM changed the authentication method for Watson, we were trying to implement that in our code, but we are not able to receive any data from the TTS service using their SDK, or raw websockets. The only thing that works is the HTTP API, which…
1
vote
3 answers

importing gTTS in python

How can I install gTTS so I can use: from gtts import gTTS in python? I've tried it, and tried pip install gtts in cmd, but it says that pip is not a recognised command.
Josh
  • 57
  • 2
  • 6
1
vote
1 answer

How to convert text to speech to audio file and play it

My goal is to convert text to speech to a audio file and play it. I am getting java.io.IOException: setDataSource failed. I am new to android. Please help. HashMap map = new…
Tanmoy Roy
  • 93
  • 2
  • 12
1
vote
1 answer

Text to Speech framework for iOS with kids voice

I am trying to build a kids game using swift. I want to use text to speech API in my app, but all the API which i came through were either male or female robot kind of voice. Is there any API available which converts text to speech with kids voice…
Richa Srivastava
  • 482
  • 1
  • 7
  • 24
1
vote
1 answer

"Text to Speech" in Android 9.0

I want to use TTS in an Android application. I followed introduction-to-text-to-speech-in. And this is the code of the Activity which creates TTS instance: public class MainActivity extends Activity implements TextToSpeech.OnInitListener { …
hasanghaforian
  • 13,858
  • 11
  • 76
  • 167
1
vote
2 answers

Avoid opening the TTS engine selection popup

I've written a simple text-to-speech app. But in some mobile with more than one tts engine, Even though the choice of the tts engine within my code, the tts engine selection popup opens again!! How can I avoid it from opening? my code is…
roghayeh hosseini
  • 676
  • 1
  • 8
  • 21
1 2 3
99
100