mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
28 lines
612 B
PowerShell
28 lines
612 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
list-voices.ps1
|
|
.DESCRIPTION
|
|
Lists the installed text-to-speech (TTS) voices
|
|
.EXAMPLE
|
|
PS> .\list-voices.ps1
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
#Requires -Version 2.0
|
|
|
|
try {
|
|
Add-Type -AssemblyName System.Speech
|
|
$Synth = New-Object System.Speech.Synthesis.SpeechSynthesizer
|
|
$Synth.GetInstalledVoices() |
|
|
Select-Object -ExpandProperty VoiceInfo |
|
|
Select-Object -Property Name, Culture, Gender, Age
|
|
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|