Speech synthesis: Difference between revisions

Content added Content deleted
(Added Python implementation of speech synthesis via pyttsx (wrapper around espeak library))
m (Added AutoIt Code)
Line 12: Line 12:
<lang ahk>talk := ComObjCreate("sapi.spvoice")
<lang ahk>talk := ComObjCreate("sapi.spvoice")
talk.Speak("This is an example of speech synthesis.")</lang>
talk.Speak("This is an example of speech synthesis.")</lang>

=={{header|AutoIt}}==

<lang AutoIt>$voice = ObjCreate("SAPI.SpVoice")
$voice.Speak("This is an example of speech synthesis.")</lang>


=={{header|BASIC256}}==
=={{header|BASIC256}}==