PowerShell/scripts/speak-danish.ps1

34 lines
812 B
PowerShell
Raw Normal View History

2024-10-01 15:24:16 +02:00
<#
.SYNOPSIS
Speaks text in Danish
.DESCRIPTION
This PowerShell script speaks the given text with a Danish text-to-speech (TTS) voice.
.PARAMETER text
2023-08-06 11:42:01 +02:00
Specifies the Danish text to speak
.EXAMPLE
2023-08-06 11:35:19 +02:00
PS> ./speak-danish.ps1 Hej
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2022-09-04 11:08:03 +02:00
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 Danish text to speak" }
2022-09-28 10:03:04 +02:00
$TTS = New-Object -ComObject SAPI.SPVoice
2023-08-06 11:27:49 +02:00
foreach ($voice in $TTS.GetVoices()) {
if ($voice.GetDescription() -like "*- Danish*") {
$TTS.Voice = $voice
2022-09-28 10:03:04 +02:00
[void]$TTS.Speak($text)
exit 0 # success
}
}
2023-08-06 11:27:49 +02:00
throw "No Danish text-to-speech voice found - please install one"
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}