windows_tts 0.1.1

A simple text-to-speech (TTS) library for windows
docs.rs failed to build windows_tts-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

windows_tts

A simple and easy-to-use text-to-speech(TTS) library for Windows.

Getting started

Add Dependency

[dependencies]
windows_tts = "0.1"

Usage

use windows_tts::tts::tts;

tts("test");

How It Works

  1. Import the tts functions:
    use windows_tts::tts
    
  2. Call tts with the text you want to convert to speech:
    tts("this is a test");
    

That's it! Your text will be spoken using Windows' build-in TTS engine.

Note

🚨 This crate only works on Windows.