Speech synthesis: Difference between revisions

Content added Content deleted
No edit summary
(add Ruby)
Line 77: Line 77:
=={{header|PicoLisp}}==
=={{header|PicoLisp}}==
<lang PicoLisp>(call 'espeak "This is an example of speech synthesis.")</lang>
<lang PicoLisp>(call 'espeak "This is an example of speech synthesis.")</lang>

=={{header|Ruby}}==
{{libheader|win32-utils}}
<lang ruby>require 'win32/sapi5'
v = Win32::SpVoice.new
v.Speak('This is an example of speech synthesis.')</lang>


=={{header|Tcl}}==
=={{header|Tcl}}==