Text to speech: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Standard Text to Speech mit folgendem Text "Hallo mein Name ist PowerShell")
 
Zeile 1: Zeile 1:
=== Standard Text to Speech mit folgendem Text "Hallo mein Name ist PowerShell" ===
+
=== Standard Text to Speech mit folgendem Text "Noch son Ton - Kastration" ===
 
  <source lang="powershell">Add-Type -AssemblyName System.speech
 
  <source lang="powershell">Add-Type -AssemblyName System.speech
 
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
 
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer

Aktuelle Version vom 18. Oktober 2017, 22:21 Uhr

Standard Text to Speech mit folgendem Text "Noch son Ton - Kastration"

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')