mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
32 lines
831 B
PowerShell
Executable File
32 lines
831 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 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" }
|
|
|
|
$CurrentVoice = New-Object -ComObject SAPI.SPVoice
|
|
$Voices = $CurrentVoice.GetVoices()
|
|
foreach ($Voice in $Voices) {
|
|
if ($Voice.GetDescription() -notlike "*- Spanish*") { continue }
|
|
$CurrentVoice.Voice = $Voice
|
|
[void]$CurrentVoice.Speak($text)
|
|
exit 0 # success
|
|
}
|
|
throw "No Spanish text-to-speech voice found - please install one"
|
|
} catch {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|