Go to file
Nolan Darilek f4952ad132 UWP tweaks and optimizations.
* Initialized TTS `MediaPlayer` in real-time mode.
* Set media category to speech.
* More aggressively drop locks to prevent deadlocks.
* Remove checks of queued items that are no longer necessary.
* Made `is_speaking` check both media player state and queued item count.
* Return eagerly from `stop` if speech isn't in progress, thus eliminating more locks.
2020-11-25 10:07:28 -06:00
.github/workflows Refactor release job. 2020-11-17 16:47:46 -06:00
examples Add example for unscientifically measuring latency of TTS. 2020-11-25 09:54:46 -06:00
src UWP tweaks and optimizations. 2020-11-25 10:07:28 -06:00
winrt_bindings Set license. 2020-06-17 17:54:23 -05:00
.gitignore Add .gitignore. 2019-09-10 10:41:08 -05:00
Cargo.toml Bump version. 2020-11-18 08:27:09 -06:00
README.md Document feature. 2020-10-08 19:08:18 -05:00
build.rs Fix cargo fmt CI failure. 2020-11-17 16:36:33 -06:00

README.md

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 use_tolk Cargo feature)
    • WinRT
  • Linux via Speech Dispatcher
  • MacOS
    • AppKit on MacOS 10.13 and below
    • AVFoundation on MacOS 10.14 and above, and iOS
  • WebAssembly