-
Notifications
You must be signed in to change notification settings - Fork 0
/
automation.py
72 lines (48 loc) · 1.54 KB
/
automation.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import pyautogui as pag
import speech_recognition as sr
import pyttsx3 as tts
# Initialize the recognizer
r = sr.Recognizer()
# Function to convert text to
# speech
def SpeakText(command):
# Initialize the engine
engine = tts.init()
engine.say(command)
engine.runAndWait()
# Loop infinitely for user to
# speak
while(1):
# Exception handling to handle
# exceptions at the runtime
try:
# use 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.5)
# listens for the user's input
audio2 = r.listen(source2)
# Using ggogle to recognize audio
MyText = r.recognize_google(audio2)
MyText = MyText.lower()
print("Did you say "+MyText)
SpeakText(MyText)
except sr.RequestError as e:
print("Could not request results; {0}".format(e))
except sr.UnknownValueError:
print("unknown error occured")
#############################################
# def goToSite(website):
# pag.hotkey('alt', 'tab')
# pag.hotkey('ctrl', 't')
# pag.hotkey('ctrl', 'l')
# pag.write(website, interval=0.1)
# pag.press('enter')
# def openFileExplorer():
# pag.hotkey('win', 'e')
# website = input("Enter website name: ")
# goToSite(website)
# print(pag.KEY_NAMES)
# pag.hotkey('fn', 'f9')