- Move utility scripts to scripts/ directory: - add_voice.py (add custom voices) - say.py (CLI TTS client) - test_voices.sh (voice testing) - download_samples.sh (OpenAI samples) - Remove Windows batch files (.bat) - Linux/Docker focus - startup.bat - download_samples.bat - download_voices_tts-1.bat - download_voices_tts-1-hd.bat - Create docs/ directory with AUDIT.md: - Complete repository file audit - Document 10+ abandoned TTS models to integrate - Plan for binary mirror strategy - Outline future refactoring to src/ structure Raccoon mission: Scripts are in scripts/, docs reference them. No code belongs in docs/ - only documentation. 🦝 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
4 lines
205 B
Bash
Executable file
4 lines
205 B
Bash
Executable file
#!/bin/sh
|
|
for i in alloy echo fable onyx nova shimmer; do
|
|
[ ! -e "voices/$i.wav" ] && curl -s https://cdn.openai.com/API/docs/audio/$i.wav | ffmpeg -loglevel error -i - -ar 22050 -ac 1 voices/$i.wav
|
|
done
|