mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
33 lines
844 B
PowerShell
Executable File
33 lines
844 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
speak-italian.ps1 [<text>]
|
|
.DESCRIPTION
|
|
Speaks the given text with an Italian text-to-speech (TTS) voice.
|
|
.EXAMPLE
|
|
PS> .\speak-italian.ps1 Ciao
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
param([string]$text = "")
|
|
|
|
try {
|
|
if ($text -eq "") { $text = read-host "Enter the Italian 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
|
|
}
|
|
throw "No Italian text-to-speech voice found - please install one"
|
|
} catch {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|