Speech synthesis: Difference between revisions

Content added Content deleted
m (added whitespace before the TOC (table of contents), added other whitespace to the task's preamble.)
No edit summary
Line 218: Line 218:
=={{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|PowerShell}}==
Capture system disk label information as an array of strings:
<lang PowerShell>
Add-Type -AssemblyName System.Speech

$anna = New-Object System.Speech.Synthesis.SpeechSynthesizer

$anna.Speak("I'm sorry Dave, I'm afraid I can't do that.")
$anna.Dispose()
</lang>


=={{header|Racket}}==
=={{header|Racket}}==