Synthesizer

Speech synthesizer for Text To Speech.

Members

Aliases

put
alias put = speak

Synthesizer is an OutputRange of strings.

Functions

rate
int rate()

Rate of speech synthesis.

rate
void rate(int newRate)

Rate of speech synthesis.

speak
void speak(char[] text)
void speak(wchar[] text)

Speak a string of text.

voice
void voice(Voice newVoice)
Voice voice()

Voice to use for speech synthesis.

volume
void volume(uint newVolume)
uint volume()

Volume of speech playback in the range 0-100.

Static functions

create
Synthesizer create()

Create a new speech synthesis interface using the system default voice.

Meta