Text to speech

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche

Standard Text to Speech mit folgendem Text "Hallo mein Name ist PowerShell"

Add-Type -AssemblyName System.speech
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.Speak('Noch son Ton - Kastration')

Installierte Stimmen anzeigen

$speak.GetInstalledVoices().VoiceInfo

Stimme wechseln

$speak.SelectVoice('Microsoft Hazel Desktop')