2022-09-05 19:40:26 +02:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2023-08-06 11:35:19 +02:00
|
|
|
|
Speaks text in Mandarin
|
2022-09-05 19:40:26 +02:00
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script speaks the given text with a Mandarin text-to-speech (TTS) voice.
|
|
|
|
|
.PARAMETER text
|
2023-08-06 11:42:01 +02:00
|
|
|
|
Specifies the Mandarin text to speak
|
2022-09-05 19:40:26 +02:00
|
|
|
|
.EXAMPLE
|
2023-08-06 11:35:19 +02:00
|
|
|
|
PS> ./speak-mandarin.ps1 "你好"
|
2022-09-05 19:40:26 +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 Mandarin text to speak" }
|
2022-09-05 19:40:26 +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 "*- Mandarin*") {
|
|
|
|
|
$TTS.Voice = $voice
|
2022-09-28 10:03:04 +02:00
|
|
|
|
[void]$TTS.Speak($text)
|
2022-09-05 19:40:26 +02:00
|
|
|
|
exit 0 # success
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-06 11:27:49 +02:00
|
|
|
|
throw "No Mandarin text-to-speech voice found - please install one"
|
2022-09-05 19:40:26 +02:00
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|