33 lines
1.0 KiB
Bash
Executable File
33 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# ════════════════════════════════════════════════
|
|
# ARIA — Piper Stimmen herunterladen
|
|
# Ramona (Alltag) + Thorsten (epische Momente)
|
|
# ════════════════════════════════════════════════
|
|
|
|
set -e
|
|
|
|
VOICES_DIR="aria-data/voices"
|
|
BASE_URL="https://huggingface.co/rhasspy/piper-voices/resolve/main/de/de_DE"
|
|
|
|
mkdir -p "$VOICES_DIR"
|
|
cd "$VOICES_DIR"
|
|
|
|
echo "Lade ARIA Stimmen..."
|
|
echo ""
|
|
|
|
echo "[1/4] Ramona (Modell)..."
|
|
wget -q --show-progress "$BASE_URL/ramona/low/de_DE-ramona-low.onnx"
|
|
|
|
echo "[2/4] Ramona (Config)..."
|
|
wget -q --show-progress "$BASE_URL/ramona/low/de_DE-ramona-low.onnx.json"
|
|
|
|
echo "[3/4] Thorsten (Modell)..."
|
|
wget -q --show-progress "$BASE_URL/thorsten/high/de_DE-thorsten-high.onnx"
|
|
|
|
echo "[4/4] Thorsten (Config)..."
|
|
wget -q --show-progress "$BASE_URL/thorsten/high/de_DE-thorsten-high.onnx.json"
|
|
|
|
echo ""
|
|
echo "Stimmen geladen!"
|
|
ls -lh *.onnx
|