I am working on a java application which is in fact a back-office for my iOS application (iPhone and iPad)
I need to integrate TTS in my application in order to read mails content in english or french
I searched the net I found many tts engines such as festival or freeTTS but the problem that It doesn't support french
Is there any other TTS engines (free or commercial) that I can integrate in my application???
Asked
Active
Viewed 717 times
0

Aymen HARRATH
- 474
- 3
- 15
-
@ user2107422 ,did you got that.. – Adalarasan_Serangulam Feb 27 '13 at 09:53
-
no can you explain it – Aymen HARRATH Feb 27 '13 at 09:57
-
At the moment what you faced.. can you explain me in detail..then only i try to help you. ASAP – Adalarasan_Serangulam Feb 27 '13 at 10:00
-
just tell me what framework to use in order to integrate TTS in my java application in both languages English and French – Aymen HARRATH Feb 27 '13 at 10:03
-
hi i updated the new link could you please click that link – Adalarasan_Serangulam Feb 27 '13 at 10:07
1 Answers
0
private TextToSpeech mTts;
protected void onActivityResult
( int requestCode, int resultCode, Intent data)
{
if (requestCode == MY_DATA_CHECK_CODE)
{
if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS)
{
// success, create the TTS instance
mTts = new TextToSpeech(this, this);
}
else
{
// missing data, install it
Intent installIntent = new Intent();
installIntent.setAction( TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
startActivity(installIntent);
}
}
}
mTts.isLanguageAvailable(Locale.FRANCE))
click this link FREETTSenter link description here
STACKOVERFLOW already described similar to this questionenter link description here

Community
- 1
- 1

Adalarasan_Serangulam
- 700
- 4
- 9
- 17