How to use and import eSpeak in eclipse?

I am new to android dev.

How can I import eSpeak into my Android project and use it to read texts?

Where can I download the eSpeak library?

I just found:

http://espeak.sourceforge.net/

https://github.com/rhdunn/espeak#android

But where is the android project and how to use it?

Is there any sample code for reading text?

Thanks.

+6
source share
2 answers

Are you looking for the Android thread of this project?

https://github.com/rhdunn/espeak/tree/android

and how to build it

https://github.com/rhdunn/espeak/tree/android#building

You can also try installing one of these two applications and use them in your application.

https://play.google.com/store/apps/details?id=com.googlecode.eyesfree.espeak https://play.google.com/store/apps/details?id=com.reecedunn.espeak - Paid

Here is a thread that discusses how to install the language when using the first option. - using the eSpeak tts mechanism in the application

TTS is a low level feature. It might be better to leave it standalone. You can always install apk as part of the application installation. See Section Can an Android app install another Android app?

The required TTS engine is called from your application.

Hope this helps.

+4
source

Source: https://habr.com/ru/post/985002/


All Articles