PowerShell/Scripts/speak-thai.ps1
2023-08-24 13:28:42 +02:00

34 lines
815 B
PowerShell
Executable File

<#
.SYNOPSIS
Speaks text in Thai
.DESCRIPTION
This PowerShell script speaks the given text with a Thai text-to-speech (TTS) voice.
.PARAMETER text
Specifies the Thai text to speak
.EXAMPLE
PS> ./speak-thai.ps1 "สวัสดี"
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([string]$text = "")
try {
if ($text -eq "") { $text = Read-Host "Enter the Thai text to speak" }
$TTS = New-Object -ComObject SAPI.SPVoice
foreach ($voice in $TTS.GetVoices()) {
if ($voice.GetDescription() -like "*- Thai*") {
$TTS.Voice = $voice
[void]$TTS.Speak($text)
exit 0 # success
}
}
throw "No Thai text-to-speech voice found - please install one."
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}