tts_rust 0.2.0

Simple & easy text-to-speech module for creating bots and much more.
Documentation

Text To Speech module for Rust

Really Simple Text to Speech module for rust

Can be used for bots, websites etc.

Made with

rust

Module available at -

Example

Cargo.toml

Add this to your cargo.toml file:

   tts_rust = "0.2.0"

main.rs

// use
use tts_rust::text_speech;
use tts_rust::text_speech_text;
use tts_rust::test_a_speech;

fn main() {
   // Anything inside the double quotes (" ") will be spoken out
    text_speech("Hello, World!");
    // Speak and display:
    text_speech_text("Hello, I am speaking and writing!");
   // Test the module by doing this:
   test_a_speech();
}


Thank you! :smile:

This repo is licensed under:

  • MIT