Added speak-german.ps1

This commit is contained in:
Markus
2021-02-08 19:59:08 +01:00
parent f13901caca
commit 8f819aa0ff
7 changed files with 38 additions and 50 deletions

32
Scripts/speak-german.ps1 Normal file
View File

@ -0,0 +1,32 @@
#!/snap/bin/powershell
<#
.SYNTAX ./speak-german.ps1 [<text>]
.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
#>
param($Text = "")
try {
$Voice = new-object -ComObject SAPI.SPVoice
$Voices = $Voice.GetVoices()
foreach ($OtherVoice in $Voices) {
$Description = $OtherVoice.GetDescription()
if ($Description -like "*- German*") {
if ($Text -eq "") {
$Text = read-host "Enter the text to speak"
}
write-progress "$Text"
$Voice.Voice = $OtherVoice
[void]$Voice.Speak($Text)
write-progress -complete "$Text"
exit 0
}
}
write-error "Sorry, no German text-to-speech (TTS) voice found"
exit 1
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}