354cacd417
- 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"
5 lines
106 B
Bash
Executable File
5 lines
106 B
Bash
Executable File
#!/bin/bash
|
|
# kokoro-say compat shim -> ksay
|
|
ROOT="$(cd "$(dirname "$0")" && pwd)"
|
|
exec "$ROOT/ksay" "$@"
|