Skip to content

Instantly share code, notes, and snippets.

@btrott
Created January 4, 2011 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save btrott/764398 to your computer and use it in GitHub Desktop.
Save btrott/764398 to your computer and use it in GitHub Desktop.
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