2021-02-09 19:30:45 +01:00
|
|
|
#!/bin/powershell
|
2021-02-08 19:59:08 +01:00
|
|
|
<#
|
|
|
|
.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
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
}
|