Skip to content

Commit eb9a994

Browse files
aivrarclaude
andcommitted
Initial release — portable multi-GPU TTS server with 10 models
Gateway + worker architecture with subprocess isolation, 7-stage audio post-processing pipeline, Whisper verification, multi-GPU load balancing, and one-click portable installer. No system Python, Git, or FFmpeg required. Models: XTTS v2, Bark, Fish Speech 1.5, Kokoro, Dia 1.6B, Chatterbox, F5-TTS, Qwen2.5-Omni, VibeVoice, Higgs Audio. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0933508 commit eb9a994

28 files changed

Lines changed: 8228 additions & 0 deletions

.gitignore

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Auto-created directories (downloaded/generated at runtime)
2+
python_embedded/
3+
git_portable/
4+
ffmpeg/
5+
rubberband/
6+
espeak_ng/
7+
venvs/
8+
tts_models/
9+
output/
10+
projects_output/
11+
voices/
12+
13+
# Python
14+
__pycache__/
15+
*.py[cod]
16+
*$py.class
17+
*.so
18+
.Python
19+
*.egg-info/
20+
.eggs/
21+
*.egg
22+
23+
# Environment / secrets
24+
.env
25+
.env.*
26+
*.key
27+
credentials.json
28+
29+
# OS
30+
Thumbs.db
31+
Desktop.ini
32+
.DS_Store
33+
nul
34+
35+
# IDE
36+
.vscode/
37+
.idea/
38+
*.swp
39+
*.swo
40+
*~
41+
42+
# Logs
43+
*.log
44+
45+
# Temp files from install process
46+
_tcltk.msi
47+
_tcltk_extract/
48+
_python_temp/
49+
python_embedded.zip
50+
python_installer.exe
51+
git_portable.zip
52+
ffmpeg_portable.zip
53+
rubberband_portable.zip
54+
espeak_ng.zip
55+
get-pip.py
56+
57+
# Claude Code
58+
.claude/

0 commit comments

Comments
 (0)