PowerShell/Scripts/speak-german.ps1

29 lines
831 B
PowerShell
Raw Normal View History

2021-02-08 19:59:08 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX speak-german.ps1 [<text>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION speaks the given text with a German text-to-speech (TTS) voice
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-08 19:59:08 +01:00
#>
param($Text = "")
2021-04-07 15:17:49 +02:00
if ($Text -eq "") { $Text = read-host "Enter the text to speak" }
2021-02-18 20:17:55 +01:00
2021-02-08 19:59:08 +01:00
try {
$Voice = new-object -ComObject SAPI.SPVoice
$Voices = $Voice.GetVoices()
foreach ($OtherVoice in $Voices) {
$Description = $OtherVoice.GetDescription()
2021-04-08 13:27:03 +02:00
if ($Description -notlike "*- German*") { continue }
# write-progress "$Text"
$Voice.Voice = $OtherVoice
[void]$Voice.Speak($Text)
# write-progress -complete "$Text"
exit 0
2021-02-08 19:59:08 +01:00
}
2021-02-16 19:43:46 +01:00
write-error "No German text-to-speech (TTS) voice found"
2021-02-08 19:59:08 +01:00
exit 1
} catch {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-02-08 19:59:08 +01:00
exit 1
}