我正在尝试编写代码以接受语音命令并相应地执行任务。但是,由于不断遇到错误:“ OSError:[Errno -9999] Unexpected to host error”,我陷入了困境。
我也检查了麦克风的可访问性,但事实并非如此。请帮助。
代码如下:
import pyttsx3 #pip install pyttsx3
import speech_recognition as sr #pip install speechRecognition
import datetime
import wikipedia #pip install wikipedia
import webbrowser
import os
import smtplib
engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
# print(voices[1].id)
engine.setProperty('voice', voices[0].id)
def speak(audio):
engine.say(audio)
engine.runAndWait()
def wishMe():
hour = int(datetime.datetime.now().hour)
if hour>=0 and hour<12:
speak("Good Morning!")
elif hour>=12 and hour<18:
speak("Good Afternoon!")
else:
speak("Good Evening!")
speak("I am Alice. Please tell me how may I help you")
def takeCommand():
#It takes microphone input from the user and returns string output
r = sr.Recognizer()
with sr.Microphone() as source:
print("Listening...")
r.pause_threshold = 0.5
audio = r.listen(source)
try:
print("Recognizing...")
query = r.recognize_google(audio, language='en-in')
print(f"User said: {query}\n")
except Exception as e:
# print(e)
print("Say that again please...")
return "None"
return query
def sendEmail(to, content):
server = smtplib.SMTP('smtp.gmail.com', 587)
server.ehlo()
server.starttls()
server.login('pranjalpathak.hbti@gmail.com', 'Suyashpathak')
server.sendmail('pranjalpathak.hbti@gmail.com', to, content)
server.close()
if __name__ == "__main__":
wishMe()
while True:
# if 1:
query = takeCommand().lower()
# Logic for executing tasks based on query
if 'wikipedia' in query:
speak('Searching Wikipedia...')
query = query.replace("wikipedia", "")
results = wikipedia.summary(query, sentences=2)
speak("According to Wikipedia")
print(results)
speak(results)
elif 'open youtube' in query:
webbrowser.open("youtube.com")
elif 'open google' in query:
webbrowser.open("google.com")
elif 'open stackoverflow' in query:
webbrowser.open("stackoverflow.com")
elif 'play music' in query:
music_dir = r'C:\Users\pranjal.pathak\Music'
songs = os.listdir(music_dir)
print(songs)
os.startfile(os.path.join(music_dir, songs[0]))
elif 'the time' in query:
strTime = datetime.datetime.now().strftime("%H:%M:%S")
speak(f"Sir, the time is {strTime}")
elif 'open excel' in query:
excel=r'C:\Program Files (x86)\Microsoft Office\root\Office16\EXCEL.exe'
os.startfile(os.path.join(excel))
elif 'close excel' in query:
try:
speak('Terminating excel')
os.system('TASKKILL /F /IM EXCEL.exe')
except Exception as e:
print(e)
speak("Sorry Sir. I am not able to close excel")
elif 'open powerpoint' in query:
pp=r'C:\Program Files (x86)\Microsoft Office\root\Office16\POWERPNT.exe'
os.startfile(os.path.join(pp))
elif 'close powerpoint' in query:
try:
speak('Terminating powerpoint')
os.system('TASKKILL /F /IM POWERPNT.exe')
except Exception as e:
print(e)
speak("Sorry Sir. I am not able to close excel")
elif 'email to Pranjal' in query:
try:
speak("What should I say?")
content = takeCommand()
to = "pranjalpathak.hbti@gmail.com"
sendEmail(to, content)
speak("Email has been sent!")
except Exception as e:
print(e)
speak("Sorry Sir. I am not able to send this email")
elif 'stop music' in query:
try:
speak('Terminating music')
os.system('TASKKILL /F /IM Music.UI.exe')
except Exception as e:
print(e)
speak("Sorry Sir. I am not able to open music")
elif 'stop' in query:
try:
speak('Terminating the voice recognition')
break
except Exception as e:
print(e)
speak("Sorry sir. I am not able close the file")