forked from MycroftAI/mycroft-core
-
-
Notifications
You must be signed in to change notification settings - Fork 17
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
feat/multiple_wakewords #2
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JarbasAl
commented
Oct 22, 2021
JarbasAl
commented
Oct 22, 2021
JarbasAl
commented
Oct 22, 2021
JarbasAl
commented
Oct 22, 2021
JarbasAl
commented
Oct 22, 2021
JarbasAl
commented
Oct 22, 2021
JarbasAl
commented
Oct 22, 2021
JarbasAl
commented
Oct 22, 2021
NeonDaniel
requested changes
Oct 25, 2021
JarbasAl
force-pushed
the
dev
branch
3 times, most recently
from
October 26, 2021 02:47
1b15829
to
47d8a1f
Compare
JarbasAl
force-pushed
the
feat/multiple_wakewords
branch
from
October 26, 2021 14:03
b2a51b7
to
d3a1f91
Compare
rebased, will address code review now |
JarbasAl
force-pushed
the
feat/multiple_wakewords
branch
2 times, most recently
from
October 28, 2021 18:58
a1acf43
to
7b7d825
Compare
ChanceNCounter
approved these changes
Oct 28, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I defer to Daniel, as I am backlogged relative to my keyboard time today.
NeonDaniel
approved these changes
Oct 28, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No time to test, but looks good
Multiple hotwords! Yes, its MycroftAI#1233 again for the 9087th time hotwords can do any of the following: - play a sound - fix/support multiple audio extensions instead of .wav only - start listening - trigger "wake up" - emit a bus event - emit an utterance - select a STT lang sample config ```json "hotwords": { "hey_mycroft": { "module": "ovos-precise-lite", "model": "/home/user/precise_stuff/training/hey_mycroft.tflite", "listen": true, "sound": "snd/start_listening.wav" }, "wake up": { "module": "pocketsphinx", "phonemes": "W EY K . AH P", "threshold": 1e-20, "lang": "en-us", "wakeup": true }, "thank you": { "module": "pocketsphinx", "phonemes": "TH AE NG K . Y UW", "threshold": 0.1, "event": "mycroft.stop", "utterance": "thank you", "lang": "en-us" } }, ```
JarbasAl
force-pushed
the
feat/multiple_wakewords
branch
from
November 1, 2021 22:11
f06c5b5
to
adedd85
Compare
JarbasAl
added a commit
that referenced
this pull request
Nov 4, 2021
Multiple hotwords! Yes, its MycroftAI#1233 again for the 9087th time hotwords can do any of the following: - play a sound - fix/support multiple audio extensions instead of .wav only - start listening - trigger "wake up" - emit a bus event - emit an utterance - select a STT lang sample config ```json "hotwords": { "hey_mycroft": { "module": "ovos-precise-lite", "model": "/home/user/precise_stuff/training/hey_mycroft.tflite", "listen": true, "sound": "snd/start_listening.wav" }, "wake up": { "module": "pocketsphinx", "phonemes": "W EY K . AH P", "threshold": 1e-20, "lang": "en-us", "wakeup": true }, "thank you": { "module": "pocketsphinx", "phonemes": "TH AE NG K . Y UW", "threshold": 0.1, "event": "mycroft.stop", "utterance": "thank you", "lang": "en-us" } }, ``` Co-authored-by: jarbasal <jarbasai@mailfence.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Multiple hotwords! Yes, its MycroftAI#1233 again for the 9087th time
hotwords can do any of the following:
sample config
related issues: