mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-15 02:19:39 +01:00
Add speak-thai.ps1
This commit is contained in:
parent
fbc4cee09f
commit
aa388aab0e
33
Scripts/speak-thai.ps1
Normal file
33
Scripts/speak-thai.ps1
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<#
|
||||||
|
.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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user