eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Reece H. Dunn 153d5dabc3 Update the eclipse settings files. 12 years ago
.settings pull in the espeak activity sources from eyes-free 12 years ago
android Update the eclipse settings files. 12 years ago
dictsource Merge branch 'master' into android 12 years ago
docs Merge branch 'development' 12 years ago
espeak-data Merge branch 'development' 12 years ago
phsource Merge branch 'master' into android 12 years ago
platforms Merge branch 'master' into android 12 years ago
praat-mod 1.46.02 12 years ago
src Merge branch 'master' into android 12 years ago
ucd-tools @ 2d982956a5 ucd-tools: pick up category classification fixes and data size reductions. 12 years ago
.gitignore Merge branch 'master' into android 12 years ago
.gitmodules Use the new ucd-tools project for wide-character compatibility on Android. 12 years ago
COPYING autotools: add a COPYING file with the GPL v3 license to make autotools happy. 12 years ago
Makefile.am Merge branch 'master' into android 12 years ago
README.md Don't check in espeakdata.zip to version control every time it changes. 12 years ago
autogen.sh autotools: link README to README.md in autogen.sh to make autotools happy. 12 years ago
configure.ac configure.ac: drop autoconf requirement to 2.63 to support more systems (e.g. the OLPC XO-1) 12 years ago
mkdictlist mkdictlist: support updating Makefile.am in-place 12 years ago
shadowdir Makefile: shadow the phsource and dictsource directories instead of copying them 13 years ago

README.md

Android Port of eSpeak Text-to-Speech

This branch contains the files needed to build espeak on the android platform. It is derived from the eyes-free project.

Prerequisits

To build eSpeak for Android, you need to have the following installed and configured correctly:

  1. Android SDK
  2. Android NDK
  3. Eclipse
  4. Android Developer Tools (ADT) for Eclipse
  5. wxWidgets 2.8 (for espeakedit when building android/res/raw/espeakdata.zip)

Fetching the Sources

The Android port uses the ucd-tools submodule. You can fetch this by running:

$ git submodule init
$ git submodule update

Building

  1. Build the libttsespeak.so file by running:

    $ cd android
    $ ndk-build
    
  2. Build the android/res/raw/espeakdata.zip file by running:

    $ ./autogen.sh
    $ ./configure --prefix=/usr
    $ make android
    
  3. Open Eclipse.

  4. Create a new workspace.

  5. Import the espeak folder as an exising Android project.

  6. Build the espeak apk within Eclipse.

Installing

The generated eSpeakActivity.apk can be installed like any other apk build via eclipse, such as by using the Run menu option.

After running, eSpeakActivity will extract the espeakdata.zip file into its own data directory to set up the available voices.

To enable eSpeak, you need to:

  1. go into the Android Text-to-Speech settings UI;
  2. enable eSpeak TTS in the Engines section;
  3. select eSpeak TTS as the default engine;
  4. use the Listen to an example option to check if everything is working.