Speech synthesis: Difference between revisions

Content deleted Content added
Added Python implementation of speech synthesis via pyttsx (wrapper around espeak library)
Cor (talk | contribs)
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}}==