Files
Adolfo Reyna 354cacd417 feat: ksay — Kokoro 82M local TTS replaces say (4x RTF, offline, 9 voices)
- engine_kokoro_tts.py: tts(text, voice, outfile) 0.5s gen 4-5x RTF M2
- ksay: drop-in say replacement, usage: ksay [-v voice] [-o file] "text"
- install-ksay.sh: one-shot setup for macmini (pip + model 310MB + warm)
- voices: af_bella (default), af_heart, am_adam, bf_emma etc
- model ready after: ./install-ksay.sh (pre-downloads hexgrad/Kokoro-82M)
- macmini: git pull gitea main && bash install-ksay.sh && ./ksay "hello"
2026-07-14 13:37:58 -04:00

5 lines
106 B
Bash
Executable File

#!/bin/bash
# kokoro-say compat shim -> ksay
ROOT="$(cd "$(dirname "$0")" && pwd)"
exec "$ROOT/ksay" "$@"