Speech synthesis: Difference between revisions

m
Added AutoIt Code
(Added Python implementation of speech synthesis via pyttsx (wrapper around espeak library))
m (Added AutoIt Code)
Line 12:
<lang ahk>talk := ComObjCreate("sapi.spvoice")
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}}==
3

edits