Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Entfernen des Abspielns via Snowboy #154

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion room/resources/snowboy/snowboydecoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def play_audio_file(fname=DETECT_DING):
a Ding sound.
:param str fname: wave file name
:return: None
"""

ding_wav = wave.open(fname, 'rb')
ding_data = ding_wav.readframes(ding_wav.getnframes())
with no_alsa_error():
Expand All @@ -72,6 +72,7 @@ def play_audio_file(fname=DETECT_DING):
stream_out.stop_stream()
stream_out.close()
audio.terminate()
"""


class HotwordDetector(object):
Expand Down