1
0
mirror of https://github.com/JarvyJ/HomeIntent.git synced 2022-02-11 01:01:05 +03:00

Home Intent: Upgrade Rhasspy to 2.5.11 (#140)

* updated rhasspy to 2.5.11

* switching to UDP audio and adding unknown and cancel words for testing

will eventually close #25 after testing
This commit is contained in:
Jarvy Jarvison
2021-10-14 14:30:11 -05:00
committed by GitHub
parent 429c444c94
commit cefaa9097b
5 changed files with 24 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ RUN npm run build
FROM rhasspy/rhasspy:2.5.10
FROM rhasspy/rhasspy:2.5.11
WORKDIR /usr/src/app
ENV PYTHONUNBUFFERED=1

View File

@@ -17,7 +17,7 @@ RUN pip3 install --no-cache-dir -r requirements.txt
FROM rhasspy/rhasspy:2.5.10
FROM rhasspy/rhasspy:2.5.11
WORKDIR /usr/src/app
ENV PYTHONUNBUFFERED=1

View File

@@ -1,6 +1,6 @@
from pathlib import Path
RHASSPY_VERSION = "2.5.10"
RHASSPY_VERSION = "2.5.11"
BUILD_DOCS = """
FROM python:3.7

View File

@@ -6,13 +6,21 @@
"system": "fsticuffs"
},
"microphone": {
"pyaudio": {
"udp_audio_host": "127.0.0.1",
"udp_audio_port": "12202"
},
"system": "pyaudio"
},
"sounds": {
"system": "aplay"
},
"speech_to_text": {
"system": "kaldi"
"kaldi": {
"allow_unknown_words": true,
"cancel_word": "cancel"
},
"system": "kaldi",
},
"text_to_speech": {
"picotts": {
@@ -22,7 +30,8 @@
},
"wake": {
"porcupine": {
"keyword_path": "jarvis_raspberry-pi.ppn"
"keyword_path": "jarvis_raspberry-pi.ppn",
"udp_audio": "127.0.0.1:12202"
},
"system": "porcupine"
}

View File

@@ -6,12 +6,20 @@
"system": "fsticuffs"
},
"microphone": {
"pyaudio": {
"udp_audio_host": "127.0.0.1",
"udp_audio_port": "12202"
},
"system": "pyaudio"
},
"sounds": {
"system": "aplay"
},
"speech_to_text": {
"kaldi": {
"allow_unknown_words": true,
"cancel_word": "cancel"
},
"system": "kaldi"
},
"text_to_speech": {
@@ -22,7 +30,8 @@
},
"wake": {
"porcupine": {
"keyword_path": "jarvis_linux.ppn"
"keyword_path": "jarvis_linux.ppn",
"udp_audio": "127.0.0.1:12202"
},
"system": "porcupine"
}