-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
47 lines (44 loc) · 2.26 KB
/
main.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
import os, sys
import pyttsx3
import speech_recognition as sr
from googletrans import Translator
import webbrowser
def speak(text):
engine = pyttsx3.init()
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[1].id)
engine.setProperty('rate', 160)
engine.say(text)
engine.runAndWait()
t = Translator()
r = sr.Recognizer()
if __name__ == "__main__":
speak("हैलो मेरा नाम dx65 है। बताइये में आपकी क्या मदद कर सक्ती हूं")
while True:
with sr.Microphone() as source:
speak("आपकी आवाज सुनी जा रही है")
print("Listening your voice....")
audio = r.listen(source)
try:
command = r.recognize_google(audio, language='hi-IN')
speak("आपने कहा: " + command)
translated = t.translate(command, dest='en').text
if "youtube" in translated.lower():
speak("youtube.com खोला जा रहा है")
print("Opening Youtube.com....")
webbrowser.open("https://www.youtube.com/")
elif "wikipedia" in translated.lower():
speak("विकिपीडिया खोला जा रहा है")
print("Opening Wikipedia....")
webbrowser.open("https://wikipedia.org/")
elif "discord" in translated.lower():
speak("discord खोला जा रहा है")
print("Opening Discord....")
os.startfile("C:/Users/Kunal/AppData/Local/Discord/Update.exe")
elif "close" in translated.lower():
speak("प्रोग्राम बंद किया जा रहा है")
print("Stopping Program....")
sys.exit()
except sr.UnknownValueError:
speak("में आपकी आवाज समझ नहीं पा रहा हूं। कृपा फिर से बोलिए")
print("Unrecognized Voice. Say that again please.")