6

I am newbie in android dev.

How can i import eSpeak to 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 to read text?

Thanks.

user3214712
  • 273
  • 1
  • 2
  • 8

2 Answers2

5

just go through these links,

add my TTS Engine to Android TTS Serivce like SAPI

http://eyes-free.googlecode.com/svn@795/trunk/documentation/tutorial/tutorial.html

Hope this will help you..

Community
  • 1
  • 1
NikW
  • 347
  • 1
  • 11
  • is it possible to include the espeak project into in my project and use it in my own application? I need something that get installed with my settings with my app. is this possible? – Farzad Apr 21 '15 at 12:08
4

Are you looking for the android branch of this project?

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

and how to build it

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

You could also try installing one of these two apps and use them from your app.

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 discussing how to set language while using the first option. - using eSpeak tts engine in application

TTS is a low level feature. May be better to keep it standalone. You can always install an apk as part of your app install. Please see the thread Can an Android app install another android app?

From your app invoke the required TTS engine.

Hope it helps.

Community
  • 1
  • 1
krishnakumarp
  • 8,967
  • 3
  • 49
  • 55
  • is it possible to include the espeak project into in my project and use it in my own application? I need something that get installed with my settings with my app. is this possible? – Farzad Apr 21 '15 at 10:52