-
-
Save rsbohn/5687395 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#not quite the same but still... | |
#(voices are limited on Windows 7) | |
#voices = %w[Agnes Alex Bruce Bubbles Fred Junior Kathy Princess Ralph Vicki Victoria] | |
$phrases = @( | |
"We are the Borg.", | |
"Lower your shields and surrender your ships.", | |
"We will add your biological and technological distinctiveness to our own.", | |
"Your culture will adapt to service us.", | |
"Resistance is futile." | |
) | |
$sapi = New-Object -ComObject SAPI.SpVoice | |
$phrases | % { $sapi.speak($_, 1) | Out-Null } | |
#Try $sapi.getVoices() | % {$_.getDescription()} to see if other voices are available. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment