Skip to content

Instantly share code, notes, and snippets.

@btrott
Created January 4, 2011 04:29
Embed
What would you like to do?
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