Google TTS Engine has stopped working

marbellapc

Member
Licensed User
Longtime User
Hello, I have integrated the TTS in an application I'm finishing up, and it works perfectly, in fact the TTS can work offline.

What I do is I have problems is to implement it on a tablet, does not support it, I guess it's because it lacks the necessary files to reproduce the voice.

Pico TTS TTS Service, Latin Input Method ... just do not know if a file is missing more, but I do not care much about that my application is oriented with telephone terminals, and these terminals almost all bring those files.

Well in conclusion, that to work on the tablet will need to find out what are the applications that handle voice play.

Regards
 
Upvote 0

tdocs2

Well-Known Member
Licensed User
Longtime User
TTS Stopped Working

Thank u, marbellapc.

Perhaps it is a tablet issue with android, but certainly I do not know enough...

Best regards.
 
Upvote 0

abner69

Member
Licensed User
Longtime User
tdocs2,

go into your settings, languages & input, text-to-speech output and verify that you have a TTS engine selected on ur tablet.

most tablets use the Pico TTS as default. you can change this to any of the TTS engines (Ivona for instance)

One of the key problems I had was making sure the TTS was initialized..

If TTS1.IsInitialized = False Then
TTS1.Initialize("TTS1")
End If

hope this helps..

...Pablo
 
Upvote 0
Top