PowerShell/scripts/speak-dutch.ps1

34 lines
804 B
PowerShell
Raw Normal View History

2024-10-01 13:37:53 +02:00
<#
2022-03-28 15:22:32 +02:00
.SYNOPSIS
Speaks text in Dutch
.DESCRIPTION
This PowerShell script speaks the given text with a Dutch text-to-speech (TTS) voice.
.PARAMETER text
2023-08-06 11:42:01 +02:00
Specifies the Dutch text to speak
2022-03-28 15:22:32 +02:00
.EXAMPLE
2023-08-06 11:35:19 +02:00
PS> ./speak-dutch.ps1 Hallo
2022-03-28 15:22:32 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([string]$text = "")
try {
2023-08-06 11:27:49 +02:00
if ($text -eq "") { $text = Read-Host "Enter the Dutch text to speak" }
2022-03-28 15:22:32 +02:00
2023-08-06 11:42:01 +02:00
$TTS = New-Object -ComObject SAPI.SPVoice
foreach ($voice in $TTS.GetVoices()) {
2023-08-06 11:27:49 +02:00
if ($voice.GetDescription() -like "*- Dutch*") {
2023-08-06 11:42:01 +02:00
$TTS.Voice = $voice
[void]$TTS.Speak($text)
2022-03-28 15:22:32 +02:00
exit 0 # success
}
}
2023-08-06 11:27:49 +02:00
throw "No Dutch text-to-speech voice found - please install one"
2022-03-28 15:22:32 +02:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2022-03-28 15:22:32 +02:00
exit 1
2022-04-13 12:06:32 +02:00
}