|
3 weeks ago | |
---|---|---|
.github/workflows | 3 weeks ago | |
examples | 3 weeks ago | |
src | 3 weeks ago | |
winrt_bindings | 1 month ago | |
.gitignore | 1 year ago | |
Cargo.toml | 3 weeks ago | |
Makefile.toml | 3 weeks ago | |
README.md | 3 weeks ago | |
build.rs | 2 months ago |
This library provides a high-level Text-To-Speech (TTS) interface supporting various backends. Currently supported backends are:
use_tolk
Cargo feature)On most platforms, this library is plug-and-play. Because of JNI's complexity, Android setup is a bit more involved. In general, look to the Android example for guidance. Here are some rough steps to get going:
ndk-glue
.android.app.NativeActivity
, and you need a System.loadLibrary(...)
call appropriate for your app. System.loadLibrary(...)
is needed to trigger JNI_OnLoad
.And I think that should about do it. Good luck!