Created
March 1, 2013 03:33
-
-
Save taylortrimble/5062291 to your computer and use it in GitHub Desktop.
Testing out some voices for Fido, our new interactive lab assistant (Hubot-based!)
This file contains hidden or 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
names = %w[Samantha Jill Trinoids Alex Tom Sangeeta] | |
phrases = [ "Access Denied.", | |
"The door is not responding. Please try using the manual lock.", | |
"The band saw has been activated. Please be safe!", | |
"Playing songs by Thin Lizzy.", | |
"Access granted." ] | |
all_phrases = phrases.join " " | |
names.each do |name| | |
system "say -v " + name + " Hello, my name is " + name + ". " + all_phrases #+ " -o " + name + ".aiff" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment