Prompt for OS X voice input
#!/usr/bin/env python | |
from subprocess import call | |
while 1: | |
say = raw_input('say? ') | |
call(['say', say]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment