PowerShell/Scripts/speak-english.ps1

33 lines
856 B
PowerShell
Raw Normal View History

2021-02-08 19:32:45 +01:00
#!/snap/bin/powershell
<#
.SYNTAX ./speak-english.ps1 [<text>]
.DESCRIPTION speaks the given text with an English text-to-speech (TTS) voice
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Text = "")
try {
$Voice = new-object -ComObject SAPI.SPVoice
$Voices = $Voice.GetVoices()
foreach ($OtherVoice in $Voices) {
$Description = $OtherVoice.GetDescription()
if ($Description -like "*- English*") {
2021-02-08 19:36:17 +01:00
if ($Text -eq "") {
$Text = read-host "Enter the text to speak"
}
2021-02-08 19:32:45 +01:00
write-progress "$Text"
$Voice.Voice = $OtherVoice
[void]$Voice.Speak($Text)
write-progress -complete ""
exit 0
}
}
write-error "Sorry, no English text-to-speech (TTS) voice found"
exit 1
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}