Update speak-italian.ps1

This commit is contained in:
Markus Fleschutz 2021-09-16 08:39:56 +02:00 committed by GitHub
parent 1b083b31d6
commit 0fb338466f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,21 +11,21 @@
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>
param([string]$Text = "") param([string]$text = "")
try { try {
if ($Text -eq "") { $Text = read-host "Enter the text to speak" } if ($text -eq "") { $text = read-host "Enter the text to speak" }
$Voice = new-object -ComObject SAPI.SPVoice $Voice = New-Object -ComObject SAPI.SPVoice
$Voices = $Voice.GetVoices() $Voices = $Voice.GetVoices()
foreach ($OtherVoice in $Voices) { foreach ($OtherVoice in $Voices) {
$Description = $OtherVoice.GetDescription() $Description = $OtherVoice.GetDescription()
if ($Description -notlike "*- Italian*") { continue } if ($Description -notlike "*- Italian*") { continue }
$Voice.Voice = $OtherVoice $Voice.Voice = $OtherVoice
[void]$Voice.Speak($Text) [void]$Voice.Speak($text)
exit 0 exit 0
} }
write-error "No Italian text-to-speech voice found - please install one" write-error "Sorry, no Italian text-to-speech voice found - please install one"
exit 1 exit 1
} catch { } catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"