tts_rust 0.3.0

Simple & easy text-to-speech module for your needs.
Documentation

tts_rust

Really Simple Text to Speech module for rust

Example

Cargo.toml

Add this to your cargo.toml file:

   tts_rust = "0.2.0"

main.rs

fn main() {
    let english_speaker = tts_rust::TTS {
        volume: 1.5,
        language: "mr".to_string(),
    };
    english_speaker.speak("Hello There!");
}

License

  • MIT