2024-10-01 15:24:16 +02:00
|
|
|
|
<#
|
2022-09-05 19:06:01 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Speaks text in Japanese
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script speaks the given text with a Japanese text-to-speech (TTS) voice.
|
|
|
|
|
.PARAMETER text
|
2023-08-06 11:42:01 +02:00
|
|
|
|
Specifies the Japanese text to speak
|
2022-09-05 19:06:01 +02:00
|
|
|
|
.EXAMPLE
|
2023-08-06 11:35:19 +02:00
|
|
|
|
PS> ./speak-japanese.ps1 "ハロー"
|
2022-09-05 19:06:01 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
param([string]$text = "")
|
|
|
|
|
|
|
|
|
|
try {
|
2023-08-06 11:27:49 +02:00
|
|
|
|
if ($text -eq "") { $text = Read-Host "Enter the Japanese text to speak" }
|
2022-09-05 19:06:01 +02:00
|
|
|
|
|
2022-09-28 10:03:04 +02:00
|
|
|
|
$TTS = New-Object -ComObject SAPI.SPVoice
|
2023-08-06 11:27:49 +02:00
|
|
|
|
foreach ($voice in $TTS.GetVoices()) {
|
|
|
|
|
if ($voice.GetDescription() -like "*- Japanese*") {
|
|
|
|
|
$TTS.Voice = $voice
|
2022-09-28 10:03:04 +02:00
|
|
|
|
[void]$TTS.Speak($text)
|
2022-09-05 19:06:01 +02:00
|
|
|
|
exit 0 # success
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-06 11:27:49 +02:00
|
|
|
|
throw "No Japanese text-to-speech voice found - please install one"
|
2022-09-05 19:06:01 +02:00
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|