I am trying to convert words to speech ..
Untill now I have tried this:
<?php
$text = "Hello this is a test for voice api of google";
// Name of the MP3 file generated using the MD5 hash
$file = md5($text);
// Save the MP3 file in this folder with the .mp3 extension
$file = "audio/" . $file .".mp3";
if($file) {
echo "create
it1352
6
2019-05-20
For years (literally), my application has suffered woes from poorly performing text to speech engines, in particular, the initialisation time when calling:
tts = new TextToSpeech(context, myOnInitListener);
The above can cause the UI to lag and if you search for 'Text to Speech initialization slow' on SO, you'll find many posts. The embedded hig
it1352
8
2019-05-21
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 -Dmbrola.base="/home/amphisoft4/Downloads/mbrola" -jar bin/FreeTTSHelloWorld.jar
All voices available:
alan (tim
it1352
1
2020-07-23
When executing the below code
from gtts import gTTS
tts = gTTS('hello')
tts.save('hello.mp3')
I am getting "AttributeError: 'NoneType' object has no attribute 'group'".
Traceback (most recent call last):
File "C:\Users\HP\Desktop\Desktop\programming\Python_code\New Text Document - Copy (8) - Copy.py", line 3, in <module>
tts.save
it1352
0
2020-09-13
how to make Vlingo like application?
is there any api that can be used for making apps for ios?
Please provide some guide line or any tutorials or an help or comment will be appreciated
Thanks in advance
i also like to know how the talking ben the dog and talking tom cat is working as we talk it repeats it in funny voice. how it is possible?
Sol
it1352
2
2019-05-21
I am writing an activity that speaks to the user and I'd really like to block on TextToSpeech initialization - or else time out. How can I get my thread to wait?
I tried:
while (! mIsTtsReady || i>limit) try { Thread.sleep(100); i ; ... };
along with:
@Override
public void OnInit() { mIsTtsReady = true; } // TextToSpeech.OnInitListe
it1352
1
2019-05-07
TextToSpeech has a way to set the speech rate: setSpeechRate(). But it doesn't have an opposite method of querying the current speed.
Is there a way to query the system for that value?
Solution You may get default TTS speech rate
Settings.Secure.getInt(getContentResolver(), Settings.Secure.TTS_DEFAULT_RATE, 100) / 100f;
it1352
1
2019-05-07
I'm working on Text to speech application but I encounter a problem that I couldn't know the present word that TTS is speaking. Is there any way to find this.?
For Example: If TTS is speaking this string: Questions that may already have your answer and when it reaches 'already', how can I highlight 'already.'
Solution I propose that use sequence
it1352
6
2019-05-07
I'm interested in performing Japanese speech synthesis on Android. The guide on Android TTS says:
"The TTS engine that ships with the Android platform supports a number of languages: English, French, German, Italian and Spanish."
Yet I see an app that does Japanese TTS, and the APK is around 1 MB - not nearly enough for a standalone TTS library.
it1352
2
2019-05-07
Im having a odd Problem with the TTS engine and I cant figure out why / where is my mistake. Is searched for hours for a solution but without any mentionable result.
When I am using this API Demo code everything is working well and I can hear for all installed languages the voice.
But when I am checking by this method I am getting CHECK_VOICE_DAT
it1352
3
2019-05-07