try/excepct on audio timeout main.record()
This commit is contained in:
parent
9a24d30b0a
commit
dbb6ba48ea
@ -33,7 +33,8 @@ def wake_word_listening():
|
|||||||
|
|
||||||
if keyword_index >= 0:
|
if keyword_index >= 0:
|
||||||
threading.Thread(
|
threading.Thread(
|
||||||
target=sa.WaveObject.from_wave_file(os.getcwd() + "/jarvis" + "/sounds/" + "listening.wav").play).start()
|
target=sa.WaveObject.from_wave_file(
|
||||||
|
os.getcwd() + "/jarvis" + "/sounds/" + "listening.wav").play).start()
|
||||||
record()
|
record()
|
||||||
|
|
||||||
|
|
||||||
@ -42,9 +43,14 @@ def record():
|
|||||||
r = sr.Recognizer()
|
r = sr.Recognizer()
|
||||||
with sr.Microphone() as source:
|
with sr.Microphone() as source:
|
||||||
r.adjust_for_ambient_noise(source=source, duration=0.7)
|
r.adjust_for_ambient_noise(source=source, duration=0.7)
|
||||||
audio = r.listen(source, timeout=2, phrase_time_limit=5)
|
|
||||||
|
|
||||||
threading.Thread(target=sa.WaveObject.from_wave_file(os.getcwd() + "/jarvis" + "/sounds/" + "listened.wav").play).start()
|
try:
|
||||||
|
audio = r.listen(source, timeout=2, phrase_time_limit=5)
|
||||||
|
except sr.WaitTimeoutError:
|
||||||
|
print("Sentence timeout")
|
||||||
|
|
||||||
|
threading.Thread(
|
||||||
|
target=sa.WaveObject.from_wave_file(os.getcwd() + "/jarvis" + "/sounds/" + "listened.wav").play).start()
|
||||||
server_utils.send_record_to_server(audio.frame_data)
|
server_utils.send_record_to_server(audio.frame_data)
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user