PowerShell/Scripts/speak-italian.ps1

35 lines
831 B
PowerShell
Raw Normal View History

2021-08-04 13:35:21 +02:00
<#
.SYNOPSIS
speak-italian.ps1 [<text>]
.DESCRIPTION
Speaks the given text with an Italian text-to-speech (TTS) voice
.EXAMPLE
PS> .\speak-italian.ps1 Ciao
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz
License: CC0
#>
param([string]$Text = "")
try {
if ($Text -eq "") { $Text = read-host "Enter the text to speak" }
$Voice = new-object -ComObject SAPI.SPVoice
$Voices = $Voice.GetVoices()
foreach ($OtherVoice in $Voices) {
$Description = $OtherVoice.GetDescription()
if ($Description -notlike "*- Italian*") { continue }
$Voice.Voice = $OtherVoice
[void]$Voice.Speak($Text)
exit 0
}
2021-08-19 12:11:22 +02:00
write-error "No Italian text-to-speech voice found - please install one"
2021-08-04 13:35:21 +02:00
exit 1
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}