Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HelloChatterbox/dummy_wakeword_plugin
disable wake words in mycroft, only button press for listening
https://github.com/HelloChatterbox/dummy_wakeword_plugin
mycroft plugin wake-word
Last synced: about 1 month ago
JSON representation
disable wake words in mycroft, only button press for listening
- Host: GitHub
- URL: https://github.com/HelloChatterbox/dummy_wakeword_plugin
- Owner: HelloChatterbox
- Created: 2020-10-10T17:05:27.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-18T10:20:44.000Z (over 3 years ago)
- Last Synced: 2024-03-14T15:50:57.705Z (9 months ago)
- Topics: mycroft, plugin, wake-word
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome-mycroft-community - Project Link
- awesome-ovos-plugins - chatterbox-ww-plugin-dummy
README
## Description
This adds a simple plugin for disabling wake word.In this case wake word is only triggered by button_press/bus signal
## Install
`pip install chatterbox-wake-word-plugin-dummy`
Then configure a wake_word with module to 'dummy_ww_plug`
NOTE: wakeword config is ignored and wake word name (or other fields) do not matter, you only need an entry with module set to "dummy_ww_plug"
```json
"listener": {
"wake_word": "dummy"
},
"hotwords": {
"dummy": {
"module": "dummy_ww_plug"
}
}
```## Use cases
- linux phones or other low powered devices (cant run a full wake word engine)
- privacy critical applications (no listening unless physical action)