1The best library because you dont have to save the
2text file or open the file to start the speech
3
4pip install pyttsx3
5
6import pyttsx3
7engine = pyttsx3.init()
8engine.say("Hello world")
9engine.runAndWait()
1#run in Cmd or in terminal
2#pip install pyttsx3
3import pyttsx3
4pyttsx3.speak("hi user")
1#pip install SpeechRecognition
2#in case of error use 'pip install pyaudio' or...
3#in case of error use 'pip install pipwin' then 'pipwin install pyaudio'
4#if error continued you may need to use python 3.6 or lower as the latest
5#python may not support pyaudio...
6import speech_recognition as sr
7import pyttsx3
8
9#audio of system to respond
10engine = pyttsx3.init('sapi5')
11voices = engine.getProperty('voices')
12engine.setProperty('voice', voices[0].id)
13engine.setProperty('rate',180)
14
15def speak(audio):
16 engine.say(audio)
17 engine.runAndWait()
18
19# simple function to recognise speech from user
20def takecommand():
21 #it takes microphone input and returns string output
22 r = sr.Recognizer()
23 with sr.Microphone() as source:
24 print('Listening.....')
25 r.pause_threshold = 1
26 r.energy_threshold = 4000
27 audio = r.listen(source)
28
29 try:
30 print('Recognising...')
31 query = r.recognize_google(audio, language='en-in')
32 print('User Said : ' , query)
33
34 except Exception as e:
35 print('exception : ',e)
36
37 speak("Sorry, I didn't hear that, Say that again Please")
38 return "None"
39 return query
40while True:
41 query = takecommand() # whatever user says will be stored in this variable
42 print("The Test got in program is : "+query)
43
1import cv2
2import pytesseract
3
4img = cv2.imread('image.jpg')
5
6# Adding custom options
7custom_config = r'--oem 3 --psm 6'
8pytesseract.image_to_string(img, config=custom_config)
1 import speech_recognition as sr
2
3
4 def main():
5
6 r = sr.Recognizer()
7
8 with sr.Microphone() as source:
9 r.adjust_for_ambient_noise(source)
10
11 audio = r.listen(source)
12
13 try:
14
15 print(r.recognize_google(audio))
16
17 except Exception as e:
18 print("Error : " + str(e))
19
20
21 with open("recorded.wav", "wb") as f:
22 f.write(audio.get_wav_data())
23
24
25 if __name__ == "__main__":
26 main()
1import speech_recognition as sr
2
3def take_command():
4 r = sr.Recognizer()
5 with sr.Microphone() as source:
6 print('Listening...')
7 r.pause_threshold = 1
8 r.energy_threshold = 50
9 audio = r.listen(source)
10
11 try:
12 print('Recognizing...')
13 qry = r.recognize_google(audio, language='en-in')
14 print(f"user said: {qry}\n")
15
16# if any error occurs this line will run
17 except Exeption as e:
18 # if you don't want to print the error comment the bottom line
19 print(e)
20 print('Say that again please\n')
21 return 'None'
22
23 return qry
24
25if __name__ == '__main__':
26 while True:
27 qry = takecommand().lower()
28
29# now you can use the takecommand function where you want to recognize speech
30# And please experiment with the above code
31# like what pause_threshold and energy_threshold do
32/\/\/\/\/\/\/\/\/\/\/\--- *HAPPYCODING* ---/\/\/\/\/\/\/\/\/\/\/\