Speech synthesis: Difference between revisions

Content added Content deleted
(→‎{{header|Ruby}}: I have espeak for OpenBSD, but this script failed because it only checked for Linux.)
m (→‎{{header|AutoHotkey}}: removed blank lines)
Line 5: Line 5:
{{works with|AutoHotkey_L}}
{{works with|AutoHotkey_L}}


<lang ahk>
<lang ahk>talk := ComObjCreate("sapi.spvoice")
talk.Speak("This is an example of speech synthesis.")</lang>
talk := ComObjCreate("sapi.spvoice")
talk.Speak("This is an example of speech synthesis.")
</lang>


=={{header|C}}==
=={{header|C}}==