PowerShell/Scripts/speak-spanish.ps1
2021-09-16 20:19:10 +02:00

33 lines
843 B
PowerShell
Executable File

<#
.SYNOPSIS
speak-spanish.ps1 [<text>]
.DESCRIPTION
Speaks the given text with a Spanish text-to-speech (TTS) voice.
.EXAMPLE
PS> .\speak-spanish.ps1 Hola
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$text = "")
try {
if ($text -eq "") { $text = read-host "Enter the Spanish text to speak" }
$Voice = New-Object -ComObject SAPI.SPVoice
$Voices = $Voice.GetVoices()
foreach ($OtherVoice in $Voices) {
$Description = $OtherVoice.GetDescription()
if ($Description -notlike "*- Spanish*") { continue }
$Voice.Voice = $OtherVoice
[void]$Voice.Speak($text)
exit 0
}
throw "No Spanish text-to-speech voice found - please install one"
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}