Added simpleaudio lib for listening/listened sound on hot word recogniton
This commit is contained in:
parent
8733e5f38a
commit
ada1849ee0
@ -1,7 +1,10 @@
|
|||||||
|
import os
|
||||||
import struct
|
import struct
|
||||||
|
import threading
|
||||||
|
|
||||||
import pvporcupine
|
import pvporcupine
|
||||||
import pyaudio
|
import pyaudio
|
||||||
|
import simpleaudio as sa
|
||||||
import speech_recognition as sr
|
import speech_recognition as sr
|
||||||
|
|
||||||
from jarvis.utils import server_utils, config_utils
|
from jarvis.utils import server_utils, config_utils
|
||||||
@ -27,7 +30,8 @@ def wake_word_listening():
|
|||||||
keyword_index = wake_word_handler.process(pcm)
|
keyword_index = wake_word_handler.process(pcm)
|
||||||
|
|
||||||
if keyword_index >= 0:
|
if keyword_index >= 0:
|
||||||
print("Recognized")
|
threading.Thread(
|
||||||
|
target=sa.WaveObject.from_wave_file(os.getcwd() + "/sounds/" + "listening.wav").play).start()
|
||||||
record()
|
record()
|
||||||
|
|
||||||
|
|
||||||
@ -35,10 +39,10 @@ def record():
|
|||||||
# obtain audio from the microphone
|
# obtain audio from the microphone
|
||||||
r = sr.Recognizer()
|
r = sr.Recognizer()
|
||||||
with sr.Microphone() as source:
|
with sr.Microphone() as source:
|
||||||
print("Say something!")
|
r.adjust_for_ambient_noise(source=source, duration=0.7)
|
||||||
r.adjust_for_ambient_noise(source=source, duration=0.5)
|
|
||||||
audio = r.listen(source, timeout=2, phrase_time_limit=5)
|
audio = r.listen(source, timeout=2, phrase_time_limit=5)
|
||||||
|
|
||||||
|
threading.Thread(target=sa.WaveObject.from_wave_file(os.getcwd() + "/sounds/" + "listened.wav").play).start()
|
||||||
server_utils.send_record_to_server(audio.frame_data)
|
server_utils.send_record_to_server(audio.frame_data)
|
||||||
|
|
||||||
|
|
||||||
|
BIN
jarvis/sounds/listened.wav
Normal file
BIN
jarvis/sounds/listened.wav
Normal file
Binary file not shown.
BIN
jarvis/sounds/listening.wav
Normal file
BIN
jarvis/sounds/listening.wav
Normal file
Binary file not shown.
@ -1,4 +1,5 @@
|
|||||||
pvporcupine~=1.9.5
|
pvporcupine~=1.9.5
|
||||||
PyAudio~=0.2.11
|
PyAudio~=0.2.11
|
||||||
SpeechRecognition~=3.8.1
|
SpeechRecognition~=3.8.1
|
||||||
requests~=2.26.0
|
requests~=2.26.0
|
||||||
|
simpleaudio~=1.0.4
|
Reference in New Issue
Block a user