-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoice_bot.py
70 lines (59 loc) · 2.29 KB
/
voice_bot.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
## Run this command in terminal before executing this program
## rasa run -m models --endpoints endpoints.yml --port 5002 --credentials credentials.yml
## and also run this in seperate terminal
## rasa run actions
import requests
import speech_recognition as sr # import the library
import subprocess
import pyglet
import pygame
from gtts import gTTS
import os
from playsound import playsound
# sender = input("What is your name?\n")
bot_message = ""
message=""
r = requests.post('http://localhost:5002/webhooks/rest/webhook', json={"message": "Hi"})
while bot_message != "Bye" or bot_message!='thanks':
r = sr.Recognizer() # initialize recognizer
with sr.Microphone() as source: # mention source it will be either Microphone or audio files.
print("Speak Anything :")
audio = r.listen(source) # listen to the source
try:
message = r.recognize_google(audio) # use recognizer to convert our audio into text part.
print("You said : {}".format(message))
except:
print("Sorry could not recognize your voice") # In case of voice not recognized clearly
if len(message)==0:
continue
r = requests.post('http://localhost:5002/webhooks/rest/webhook', json={"message": message})
print("Bot says, ",end=' ')
for i in r.json():
bot_message = i['text']
print(f"{bot_message}")
myobj = gTTS(text=bot_message)
myobj.save("output.mp3")
# Playing the converted file
#subprocess.call("welcome.mp3",shell=True)
#subprocess.call(['mpg321', "welcome.mp3", '--play-and-exit'],shell=True)
# pyglet.lib.load_library('avbin64')
# pyglet.have_avbin=True
# song = pyglet.media.load('welcome.mp3')#your file name
# song.play()
# pyglet.app.run()
#pygame.mixer.init()
#pygame.mixer.music.load("welcome.mp3")
#pygame.mixer.music.play()
#pygame.mixer.music.stop()
#os.remove("welcome.mp3")
# pygame.mixer.init()
# pygame.mixer.music.load("welcome.mp3")
# pygame.mixer.music.set_volume(1)
# pygame.mixer.music.play()
# pygame.mixer.music.get_endevent()
# while pygame.mixer.music.get_busy():
# continue
# pygame.mixer.music.load("empty.mp3")
# os.remove("welcome.mp3")
playsound("output.mp3",True)
os.remove("output.mp3")