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