python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How can i optimize my python code for speech recognition?
I'm trying to implement a code that opens links from speech recognition. How can i write easily that if for example I said "google" it will go on specific branch and computer will ask me to ...
Geek97M
Votes: 0
Answers: 1
Android: TTS initialization failed on TV
I'm working on a Text-To-Speech & Speech-To-Text based app. App is working fine on almost all device. But when I'm trying to use this on TV, it is giving me error "TTS Initialization failed!&...
Priyank Android
Votes: 0
Answers: 0
volumeGainDb not working for Google text-to-speech
My reference is this page from Google website:
Method: text.synthesize
Here is some simple python code:
import os
from google.cloud import texttospeech
###############################################...
user3567761
Votes: 0
Answers: 1
gTTS (Google-Text-to-Speech) Error: Audio gets saved but only play after opening the groovy app
from gtts import gTTS
import os
mytext = 'Welcome to the hub!'
language = 'en'
myobj = gTTS(text=mytext, lang=language, slow=False)
myobj.save("welcome.mp3")
os.system("welcome.m...

unofficialdxnny
Votes: 0
Answers: 1