mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
34 lines
815 B
PowerShell
Executable File
34 lines
815 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Speaks text in German
|
|
.DESCRIPTION
|
|
This PowerShell script speaks the given text with a German text-to-speech (TTS) voice.
|
|
.PARAMETER text
|
|
Specifies the German text to speak
|
|
.EXAMPLE
|
|
PS> ./speak-german.ps1 Hallo
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
param([string]$text = "")
|
|
|
|
try {
|
|
if ($text -eq "") { $text = Read-Host "Enter the German text to speak" }
|
|
|
|
$TTS = New-Object -ComObject SAPI.SPVoice
|
|
foreach ($voice in $TTS.GetVoices()) {
|
|
if ($voice.GetDescription() -like "*- German*") {
|
|
$TTS.Voice = $voice
|
|
[void]$TTS.Speak($text)
|
|
exit 0 # success
|
|
}
|
|
}
|
|
throw "No German text-to-speech voice found - please install one"
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|