Speech synthesis: Difference between revisions

Line 630:
speak This is an example of speech synthesis.
</pre>
 
=={{header|Ring}}==
<lang ring>
 
load "guilib.ring"
 
myApp = New qApp
{
Text = "Hello. This is an example of speech synthesis"
voice = new QTextToSpeech(null)
voice.Say(Text)
exec()
}
 
</lang>
 
{{out}}
<pre>
 
"Hello. This is an example of speech synthesis"
 
</pre>
 
 
 
 
 
 
 
=={{header|Ring}}==
36

edits