PowerShell/Scripts/speak-french.ps1
2021-09-27 17:16:29 +02:00

32 lines
826 B
PowerShell

<#
.SYNOPSIS
speak-french.ps1 [<text>]
.DESCRIPTION
Speaks the given text with a French text-to-speech (TTS) voice
.EXAMPLE
PS> ./speak-french Salut
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$text = "")
try {
if ($text -eq "") { $text = read-host "Enter the French text to speak" }
$CurrentVoice = New-Object -ComObject SAPI.SPVoice
$Voices = $CurrentVoice.GetVoices()
foreach ($Voice in $Voices) {
if ($Voice.GetDescription() -notlike "*- French*") { continue }
$CurrentVoice.Voice = $Voice
[void]$CurrentVoice.Speak($text)
exit 0 # success
}
throw "No French text-to-speech voice found - please install one"
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}