-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvoice.py
48 lines (33 loc) · 1.21 KB
/
voice.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
def voice_input():
#!/usr/bin/env python3
# Requires PyAudio and PySpeech.
#sudo apt-get install portaudio19-dev
#pip install --allow-unverified=pyaudio pyaudio
#requires internet too
import speech_recognition as sr
# Record Audio
r = sr.Recognizer()
m = sr.Microphone()
with sr.Microphone() as source:
print("Say something!")
audio = r.listen(source)
# Speech recognition using Google Speech Recognition
try:
# for testing purposes, we're just using the default API key
# to use another API key, use `r.recognize_google(audio, key="GOOGLE_SPEECH_RECOGNITION_API_KEY")`
# instead of `r.recognize_google(audio)`
a=r.recognize_google(audio)
#time.sleep(1)
#stop_listening = r.listen_in_background(m, callback)
except sr.UnknownValueError:
print("Google Speech Recognition could not understand audio")
except sr.RequestError as e:
print("Could not request results from Google Speech Recognition service; {0}".format(e))
print (a)
return a
def voice_output(ans):
import pyttsx3
import time
eng=pyttsx3.init()
eng.say(ans)
eng.runAndWait()