mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Update speak-spanish.ps1
This commit is contained in:
parent
c6d500eeb6
commit
bbae36eaa2
@ -10,7 +10,7 @@
|
|||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz / License: CC0
|
Author: Markus Fleschutz | License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([string]$text = "")
|
param([string]$text = "")
|
||||||
@ -21,10 +21,9 @@ try {
|
|||||||
$TTSVoice = New-Object -ComObject SAPI.SPVoice
|
$TTSVoice = New-Object -ComObject SAPI.SPVoice
|
||||||
foreach ($Voice in $TTSVoice.GetVoices()) {
|
foreach ($Voice in $TTSVoice.GetVoices()) {
|
||||||
if ($Voice.GetDescription() -like "*- Spanish*") { continue }
|
if ($Voice.GetDescription() -like "*- Spanish*") { continue }
|
||||||
$TTSVoice.Voice = $Voice
|
$TTSVoice.Voice = $Voice
|
||||||
[void]$TTSVoice.Speak($text)
|
[void]$TTSVoice.Speak($text)
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
}
|
|
||||||
}
|
}
|
||||||
throw "No Spanish text-to-speech voice found - please install one."
|
throw "No Spanish text-to-speech voice found - please install one."
|
||||||
} catch {
|
} catch {
|
||||||
|
Loading…
Reference in New Issue
Block a user