PowerShell/scripts/speak-turkish.ps1

34 lines
823 B
PowerShell
Raw Normal View History

2024-10-01 15:24:16 +02:00
<#
2023-01-21 12:36:42 +01:00
.SYNOPSIS
Speaks text in Turkish
.DESCRIPTION
This PowerShell script speaks the given text with a Turkish text-to-speech (TTS) voice.
.PARAMETER text
2023-08-06 11:42:01 +02:00
Specifies the Turkish text to speak
2023-01-21 12:36:42 +01:00
.EXAMPLE
2023-08-06 11:35:19 +02:00
PS> ./speak-turkish.ps1 Merhaba
2023-01-21 12:36:42 +01: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 Turkish text to speak" }
2023-01-21 12:36:42 +01:00
$TTS = New-Object -ComObject SAPI.SPVoice
2023-08-06 11:27:49 +02:00
foreach ($voice in $TTS.GetVoices()) {
if ($voice.GetDescription() -like "*- Turkish*") {
$TTS.Voice = $voice
2023-01-21 12:36:42 +01:00
[void]$TTS.Speak($text)
exit 0 # success
}
}
2023-08-06 11:27:49 +02:00
throw "No Turkish text-to-speech voice found - please install one"
2023-01-21 12:36:42 +01:00
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
2023-08-06 11:27:49 +02:00
}