From 07227f9677592aa81f64076b35ce8642cf4c1b39 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sun, 6 Aug 2023 18:57:50 +0200 Subject: [PATCH] Add speak-korean.ps1 --- Scripts/speak-korean.ps1 | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Scripts/speak-korean.ps1 diff --git a/Scripts/speak-korean.ps1 b/Scripts/speak-korean.ps1 new file mode 100644 index 00000000..36eb9cfc --- /dev/null +++ b/Scripts/speak-korean.ps1 @@ -0,0 +1,33 @@ +<# +.SYNOPSIS + Speaks text in Korean +.DESCRIPTION + This PowerShell script speaks the given text with a Korean text-to-speech (TTS) voice. +.PARAMETER text + Specifies the Korean text to speak +.EXAMPLE + PS> ./speak-korean.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 Korean text to speak" } + + $TTS = New-Object -ComObject SAPI.SPVoice + foreach ($voice in $TTS.GetVoices()) { + if ($voice.GetDescription() -like "*- Korean*") { + $TTS.Voice = $voice + [void]$TTS.Speak($text) + exit 0 # success + } + } + throw "No Korean text-to-speech voice found - please install one." +} catch { + "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" + exit 1 +}