Add speak-french.ps1

This commit is contained in:
Markus Fleschutz
2021-07-17 15:19:29 +02:00
parent 8063f4b08f
commit bc2a60e3d7
4 changed files with 36 additions and 1 deletions

33
Scripts/speak-french.ps1 Normal file
View File

@ -0,0 +1,33 @@
<#
.SYNOPSIS
speak-french.ps1 [<text>]
.DESCRIPTION
Speaks the given text with a French text-to-speech (TTS) voice
.EXAMPLE
PS> .\speak-french.ps1 Salut
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
param([string]$Text = "")
try {
if ($Text -eq "") { $Text = read-host "Enter the text to speak" }
$Voice = new-object -ComObject SAPI.SPVoice
$Voices = $Voice.GetVoices()
foreach ($OtherVoice in $Voices) {
$Description = $OtherVoice.GetDescription()
if ($Description -notlike "*- French*") { continue }
$Voice.Voice = $OtherVoice
[void]$Voice.Speak($Text)
exit 0
}
write-error "Sorry, no French text-to-speech (TTS) voice found"
exit 1
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}

View File

@ -4,7 +4,7 @@
.DESCRIPTION
Speaks the given text with a German text-to-speech (TTS) voice
.EXAMPLE
PS> .\speak-german.ps1 "Sauerkraut"
PS> .\speak-german.ps1 Hallo
.LINK
https://github.com/fleschutz/PowerShell
.NOTES