mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Update speak-french.ps1
This commit is contained in:
parent
c13936a65f
commit
1b083b31d6
@ -11,21 +11,21 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([string]$Text = "")
|
param([string]$text = "")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ($Text -eq "") { $Text = read-host "Enter the text to speak" }
|
if ($text -eq "") { $text = read-host "Enter the French text to speak" }
|
||||||
|
|
||||||
$Voice = new-object -ComObject SAPI.SPVoice
|
$Voice = New-Object -ComObject SAPI.SPVoice
|
||||||
$Voices = $Voice.GetVoices()
|
$Voices = $Voice.GetVoices()
|
||||||
foreach ($OtherVoice in $Voices) {
|
foreach ($OtherVoice in $Voices) {
|
||||||
$Description = $OtherVoice.GetDescription()
|
$Description = $OtherVoice.GetDescription()
|
||||||
if ($Description -notlike "*- French*") { continue }
|
if ($Description -notlike "*- French*") { continue }
|
||||||
$Voice.Voice = $OtherVoice
|
$Voice.Voice = $OtherVoice
|
||||||
[void]$Voice.Speak($Text)
|
[void]$Voice.Speak($text)
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
write-error "No French text-to-speech voice found - please install one"
|
write-error "Sorry, no French text-to-speech voice found - please install one"
|
||||||
exit 1
|
exit 1
|
||||||
} catch {
|
} catch {
|
||||||
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user