mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Update speak-italian.ps1
This commit is contained in:
parent
1b083b31d6
commit
0fb338466f
@ -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])"
|
||||||
|
Loading…
Reference in New Issue
Block a user