PowerShell/Scripts/speak-french.ps1

34 lines
831 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-17 15:19:29 +02:00
.SYNOPSIS
speak-french.ps1 [<text>]
.DESCRIPTION
2021-08-29 17:50:03 +02:00
Speaks the given text with a French text-to-speech (TTS) voice.
2021-07-17 15:19:29 +02:00
.EXAMPLE
PS> .\speak-french.ps1 Salut
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-07-17 15:19:29 +02:00
.LINK
https://github.com/fleschutz/PowerShell
#>
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
}
2021-08-19 12:11:22 +02:00
write-error "No French text-to-speech voice found - please install one"
2021-07-17 15:19:29 +02:00
exit 1
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}