Crates.io | tts |
lib.rs | tts |
version | 0.26.3 |
source | src |
created_at | 2018-12-30 20:42:29.72043 |
updated_at | 2024-07-06 23:35:25.11589 |
description | High-level Text-To-Speech (TTS) interface |
homepage | |
repository | https://github.com/ndarilek/tts-rs |
max_upload_size | |
id | 104616 |
size | 200,664 |
This library provides a high-level Text-To-Speech (TTS) interface supporting various backends. Currently supported backends are:
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!