Skip to content

Instantly share code, notes, and snippets.

@J2TEAM
Forked from GGulati/Jarvis.py
Created February 25, 2016 13:17
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 J2TEAM/ee7ce2f2d77c565feaf6 to your computer and use it in GitHub Desktop.
Save J2TEAM/ee7ce2f2d77c565feaf6 to your computer and use it in GitHub Desktop.
import speech_recognition
import pyttsx
speech_engine = pyttsx.init('sapi5') # see http://pyttsx.readthedocs.org/en/latest/engine.html#pyttsx.init
speech_engine.setProperty('rate', 150)
def speak(text):
speech_engine.say(text)
speech_engine.runAndWait()
recognizer = speech_recognition.Recognizer()
def listen():
with speech_recognition.Microphone() as source:
recognizer.adjust_for_ambient_noise(source)
audio = recognizer.listen(source)
try:
return recognizer.recognize_sphinx(audio)
# or: return recognizer.recognize_google(audio)
except speech_recognition.UnknownValueError:
print("Could not understand audio")
except speech_recognition.RequestError as e:
print("Recog Error; {0}".format(e))
return ""
speak("Say something!")
speak("I heard you say " + listen())
@ycmjason
Copy link

It's a cool project there.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment