A fork of mycroft core
in your config
"server": {
"disabled": true
}
utility method
from mycroft.api import is_disabled
if not is_disabled():
print("404 privacy not found")
or use the personal backend
"server": {
"url": "http://0.0.0.0:6712",
"version": "v0.1",
"update": false,
"metrics": false
}
NOTE: terrible accuracy
install pocketsphinx from source, pip package does not work
(inside venv)
bash scripts/install-pocketsphinx.sh
in config
"stt": {
"module": "pocketsphinx"
},
with kaldi
"stt": {
"module": "kaldi",
"kaldi": {
"uri": "http://localhost:8080/client/dynamic/recognize"
}
}
or deepspeech
"stt": {
"module": "deepspeech_server",
"deepspeech_server": {
"uri": "http://localhost:8080/stt"
}
},
who cares about privacy?
takes advantage of the demo google key from speech_recognition package
in config
"stt": {
"module": "google"
},