0

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???

Aymen HARRATH
  • 474
  • 3
  • 15

1 Answers1

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