mirror of
https://github.com/ndarilek/tts-rs.git
synced 2024-11-17 11:09:37 +00:00
Sync supported synths in README and lib.rs.
This commit is contained in:
parent
4d980270be
commit
cce1569c72
|
@ -9,5 +9,4 @@ This library provides a high-level Text-To-Speech (TTS) interface supporting var
|
|||
* MacOS
|
||||
* AppKit on MacOS 10.13 and below
|
||||
* AVFoundation on MacOS 10.14 and, eventually, iDevices
|
||||
* WebAssembly
|
||||
|
||||
* WebAssembly
|
13
src/lib.rs
13
src/lib.rs
|
@ -1,12 +1,15 @@
|
|||
/*!
|
||||
* a Text-To-Speech (TTS) library providing high-level interfaces to a variety of backends.
|
||||
* Currently supported backends are:
|
||||
* * [Speech Dispatcher](https://freebsoft.org/speechd) (Linux)
|
||||
* * Windows screen readers and SAPI via [Tolk](https://github.com/dkager/tolk/)
|
||||
* * Windows WinRT
|
||||
* * MacOS `NSSpeechSynthesizer`
|
||||
* * Windows
|
||||
* * Screen readers/SAPI via Tolk
|
||||
* * WinRT
|
||||
* * Linux via [Speech Dispatcher](https://freebsoft.org/speechd)
|
||||
* * MacOS
|
||||
* * AppKit on MacOS 10.13 and below
|
||||
* * AVFoundation on MacOS 10.14 and, eventually, iDevices
|
||||
* * WebAssembly
|
||||
*/
|
||||
*/
|
||||
|
||||
#[cfg(target_os = "macos")]
|
||||
use std::{boxed::Box, ffi::CStr};
|
||||
|
|
Loading…
Reference in New Issue
Block a user