forked from ndleah/python-mini-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Speech_To_Text.py
41 lines (32 loc) · 1.21 KB
/
Speech_To_Text.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
import speech_recognition as sr
import pyttsx3
# Initializing the recognizer
r = sr.Recognizer()
# Function to convert text to speech
def SpeakText(command):
# Initializing the engine
engine = pyttsx3.init()
engine.say(command)
engine.runAndWait()
# Looping infinitely for user to speak
while(1):
# Exception handling to handle exceptions at the runtime
try:
# using the microphone as source for input.
with sr.Microphone() as source2:
# wait for a second to let the recognizer
# adjust the energy threshold based on
# the surrounding noise level
r.adjust_for_ambient_noise(source2, duration=0.2)
#listens for the user's input
audio2 = r.listen(source2)
# Using google to recognize audio
MyText = r.recognize_google(audio2)
MyText = MyText.lower()
enable_automatic_punctuation=True
print(MyText)
SpeakText(MyText)
except sr.RequestError as e:
print("Could not request results; {0}".format(e))
except sr.UnknownValueError:
print("unknown error occurred")