mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
34 lines
831 B
PowerShell
34 lines
831 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Speaks text in Japanese
|
|
.DESCRIPTION
|
|
This PowerShell script speaks the given text with a Japanese text-to-speech (TTS) voice.
|
|
.PARAMETER text
|
|
Specifies the text to speak
|
|
.EXAMPLE
|
|
PS> ./speak-japanese "ハロー"
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
param([string]$text = "")
|
|
|
|
try {
|
|
if ($text -eq "") { $text = read-host "Enter the Japanese text to speak" }
|
|
|
|
$TTS = New-Object -ComObject SAPI.SPVoice
|
|
foreach ($Voice in $TTS.GetVoices()) {
|
|
if ($Voice.GetDescription() -like "*- Japanese*") {
|
|
$TTS.Voice = $Voice
|
|
[void]$TTS.Speak($text)
|
|
exit 0 # success
|
|
}
|
|
}
|
|
throw "No Japanese voice for text-to-speech (TTS) found - please install one"
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|