PowerShell/Scripts/speak-english.ps1

36 lines
896 B
PowerShell
Raw Normal View History

2021-02-08 19:32:45 +01:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
speak-english.ps1 [<text>]
.DESCRIPTION
Speaks the given text with an English text-to-speech (TTS) voice
.EXAMPLE
PS> .\speak-english.ps1 "Hello World"
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
2021-02-08 19:32:45 +01:00
#>
2021-07-15 15:51:22 +02:00
param([string]$Text = "")
2021-02-08 19:32:45 +01:00
try {
2021-07-15 15:51:22 +02:00
if ("$Text" -eq "") { $Text = read-host "Enter the text to speak" }
2021-02-08 19:32:45 +01:00
$Voice = new-object -ComObject SAPI.SPVoice
$Voices = $Voice.GetVoices()
foreach ($OtherVoice in $Voices) {
$Description = $OtherVoice.GetDescription()
2021-04-08 13:27:03 +02:00
if ($Description -notlike "*- English*") { continue }
# write-progress "$Text"
$Voice.Voice = $OtherVoice
[void]$Voice.Speak($Text)
# write-progress -complete "$Text"
exit 0
2021-02-08 19:32:45 +01:00
}
write-error "Sorry, no English text-to-speech (TTS) voice found"
exit 1
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-02-08 19:32:45 +01:00
exit 1
}