- generate_voices.py: scan /config/speakers and /voices recursively, support .ogg and .m4a (M4A auto-converted via ffmpeg), sanitise voice IDs - auto_transcribe.py: scan both host paths recursively, support all formats, use parakeet-asr on port 8010 - docker-compose.yml: mount /home/sparky/Projekte/TTS_Voices/speakers as /voices, add faster-qwen3-tts-voicedesign service on port 8021 - run_voicedesign_server.py: OpenAI-compatible server for VoiceDesign model - voicedesign_voices.json: 8 British/German VoiceDesign voices Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
43 lines
635 B
Plaintext
43 lines
635 B
Plaintext
# Upstream faster-qwen3-tts repo (tracked separately)
|
|
build/
|
|
|
|
# Personal voice recordings — keep only reference transcripts
|
|
config/speakers/*.wav
|
|
config/speakers/*.mp3
|
|
|
|
# Private speakers — entire subtree
|
|
config/speakers/privat/
|
|
|
|
# Generated at container startup from speakers/
|
|
config/voices.json
|
|
config/voices.json*
|
|
|
|
# Converted private audio (M4A → WAV, generated at runtime)
|
|
config/converted/
|
|
|
|
# Editor backup files
|
|
*.py~
|
|
*.yml~
|
|
*.yaml~
|
|
*~
|
|
|
|
# Claude Code settings
|
|
.claude/
|
|
config/.claude/
|
|
|
|
# Random generated files in project root
|
|
json
|
|
os
|
|
*.txt
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
venv/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|