Questions tagged [google-text-to-speech]

Refers to issues related to Google's APIs for text to speech (primarily the cloud text to speech API)

Google Text-to-Speech is a screen reader application developed by Google Inc for its Android operating system. It powers applications to read aloud (speak) the text on the screen.

More Info

476 questions
-1
votes
1 answer

gTTS Doesn't Save MP3 Files

I want to create an artificial intelligence program using Python. I found out that I need gTTS but it doesn't save mp3 files. Help me, please. #gtts is imported def talkToMe(audio, lgg = 'en'): #print(audio) tts = gTTS(text = audio, lang =…
user10110573
-1
votes
4 answers

Installation error : pip install gTTS (Google-Text-To-Speech) error

Getting syntax error while running the following command on terminal: pip install gTTS File "", line 1 pip install gTTS ^
Rajat
  • 19
  • 1
  • 1
  • 6
-2
votes
2 answers

Your application has authenticated using end user credentials from the Google Cloud SDK or Google Cloud Shell...texttospeech.googleapis.com

please help with this issue, I don't understand why I don't have permission. Grpc.Core.RpcException: 'Status(StatusCode=PermissionDenied, Detail="Your application has authenticated using end user credentials from the Google Cloud SDK or Google Cloud…
-2
votes
2 answers

TextToSpeech throws NullPointerException

I'm writing recycler view which contains editable list of words. ViewHolder for RecyclerView contains 2 objects: editText and sound image icon. My idea is that when I push sound icon, I expect to hear the pronunciation of the word, which I'm…
-2
votes
1 answer

High Microphone Input Triggered Bash

I have been working on developing a small voice recognition program similar to Siri or Amazon Echo that would allow me to simplify several small tasks around my home. I am extremely new to bash, so I would like some assistance reducing the necessity…
-2
votes
1 answer

Google Text to Speech Api on click play website

i have this paragraph A tattoo of angel wings on the back of the young girl pointed officers to a runaway, a 15-year-old school girl called Tina Fontaine. Within days Tina's case was making headlines throughout Canada not just for the…
-3
votes
2 answers

Better quality at google Cloud Text to Speech

I am using Google Cloud Text to Speech modules in Integromat for my Adalo app. I want to have better audio quality, so I've already switched to WaveNet and increased the Sample Rate to 48000 Hertz, but it still has pretty bad quality. What can I do?…
-3
votes
2 answers

converting text to speech on launching new activity in android

@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_image_preview); touch_color = (TextView) findViewById(R.id.touch_color); …
-3
votes
2 answers

freetts - text to speech setting mbrola voice com.sun.speech.freetts.ProcessException: Processing Utterance:

Working with ubuntu linux version Almost done with freetts setting with mbrola voices us1, us2 and us3, but finally getting exceptions. When i run the below command, i could hear kevin's voice of sun microsystems. $ java…
user1245222
-4
votes
1 answer

why is it not possible to do "import gtts.gTTS" whereas i can do "from gtts import gTTS" in python?

The error says that the there is no module named as "gtts.gTTS", and got this error many times while importing other modules. So can you brief me what is the logic behind importing modules? Can't we import class using "." operator? What is the…
1 2 3
31
32