From 01319a2b8c4d5defee0bf9980082a3312c7e8d12 Mon Sep 17 00:00:00 2001 From: "info@pi-farm.de" Date: Tue, 26 May 2026 22:49:49 +0000 Subject: [PATCH] setup_x11_jarvis.sh aktualisiert --- setup_x11_jarvis.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/setup_x11_jarvis.sh b/setup_x11_jarvis.sh index 47739d3..df16382 100755 --- a/setup_x11_jarvis.sh +++ b/setup_x11_jarvis.sh @@ -100,6 +100,29 @@ if [ ! -d "$JARVIS_DIR/venv" ]; then "$JARVIS_DIR/venv/bin/pip" install -r requirements.txt fi +#################################### +# Voice setup +#################################### + +# Modell herunterladen +wget https://alphacephei.com/vosk/models/vosk-model-small-de-0.15.zip +# Entpacken +unzip vosk-model-small-de-0.15.zip +# Ordner umbenennen, damit das Skript ihn leicht findet +mv vosk-model-small-de-0.15 model +rm vosk-model-small-de-0.15.zip + +# Piper installieren +wget https://github.com/rhasspy/piper/releases/download/v1.2.0/piper_amd64.tar.gz +tar -xf piper_amd64.tar.gz +rm piper_amd64.tar.gz + +# Das eigentliche Sprachmodell (.onnx) +wget https://huggingface.co/rhasspy/piper-voices/resolve/main/de/de_DE/thorsten/high/de_DE-thorsten-high.onnx + +# Die dazugehörige Konfigurationsdatei (.json) +wget https://huggingface.co/rhasspy/piper-voices/resolve/main/de/de_DE/thorsten/high/de_DE-thorsten-high.onnx.json + echo "====================================================" echo "✅ X11 Openbox-Umgebung erfolgreich eingerichtet!" echo "👉 Starte die grafische Oberfläche einfach mit dem Befehl: startx"