87 releases

0.26.3 Jul 6, 2024
0.26.1 Apr 19, 2024
0.26.0 Feb 9, 2024
0.25.6 Sep 9, 2023
0.1.0 Dec 30, 2018

#139 in Audio

Download history 270/week @ 2024-12-17 152/week @ 2024-12-24 141/week @ 2024-12-31 268/week @ 2025-01-07 264/week @ 2025-01-14 191/week @ 2025-01-21 270/week @ 2025-01-28 576/week @ 2025-02-04 392/week @ 2025-02-11 274/week @ 2025-02-18 409/week @ 2025-02-25 200/week @ 2025-03-04 475/week @ 2025-03-11 349/week @ 2025-03-18 361/week @ 2025-03-25 326/week @ 2025-04-01

1,537 downloads per month
Used in 14 crates (13 directly)

MIT license

89KB
2.5K SLoC

Contains (JAR file, 55KB) gradle-wrapper.jar

TTS-RS

This library provides a high-level Text-To-Speech (TTS) interface supporting various backends. Currently supported backends are:

  • Windows
    • Screen readers/SAPI via Tolk (requires tolk Cargo feature)
    • WinRT
  • Linux via Speech Dispatcher
  • MacOS/iOS
    • AppKit on MacOS 10.13 and below
    • AVFoundation on MacOS 10.14 and above, and iOS
  • Android
  • WebAssembly

Android Setup

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:

  • Set up Cargo.toml as the example does. Be sure to depend on ndk-glue.
  • Place Bridge.java appropriately in your app. This is needed to support various Android TTS callbacks.
  • Create a main activity similar to MainActivity.kt. In particular, you need to derive android.app.NativeActivity, and you need a System.loadLibrary(...) call appropriate for your app. System.loadLibrary(...) is needed to trigger JNI_OnLoad.
    • Even though you've loaded the library in your main activity, add a metadata tag to your activity in AndroidManifest.xml referencing it. Yes, this is redundant but necessary.
  • Set if your various build.gradle scripts to reference the plugins, dependencies, etc. from the example. In particular, you'll want to set up cargo-ndk-android-gradle and either depend on androidx.annotation or otherwise configure your app to keep the class rs.tts.Bridge.

And I think that should about do it. Good luck!

Dependencies

~0.3–40MB
~566K SLoC