Speech synthesis: Difference between revisions

no edit summary
(added omit from ML/I)
No edit summary
Line 1:
{{task|Temporal media}}<!-- this task to be in "Temporal media" category once ready. -->[[Category:Speech synthesis]][[Category:Temporal media]]
Render the text “<tt>This is an example of speech synthesis.</tt>” as speech.
 
=={{header|AutoHotkey}}==
{{works with|AutoHotkey_L}}
 
<lang ahk>
talk := ComObjCreate("sapi.spvoice")
talk.Speak("This is an example of speech synthesis.")
</lang>
 
=={{header|C}}==
Line 75 ⟶ 83:
<lang bash>#!/bin/sh
espeak "This is an example of speech synthesis."</lang>
 
=={{header|VBScript}}==
<lang vbs>
Dim message, sapi
message = "This is an example of speech synthesis."
Set sapi = CreateObject("sapi.spvoice")
sapi.Speak message
</lang>
 
=={{header|ZX Spectrum Basic}}==
Anonymous user