- make_clips: migrate refine_clip_timestamps to mlx-whisper, add LLM caption polishing, fix speaker label reversal in grouped caption lines - upload_clips: interactive episode/clip/platform menus, direct YouTube Shorts upload via Data API v3 (bypasses Postiz), direct Bluesky upload - Website hero: centered layout with left-column cover art on desktop, compact text links instead of pill buttons, scaled up typography - How-it-works: move anatomy section above diagram, update stats (320 names, 189+ personality layers, 20 towns, 570+ topics, 1400+ scenarios), add drunk/high/unhinged callers, voicemails, MLX Whisper GPU, LLM-polished captions - All footers: add System Status link, remove Ko-fi branding - .gitignore: YouTube OAuth credential files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
59 lines
589 B
Plaintext
59 lines
589 B
Plaintext
# Environment
|
|
.env
|
|
*.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
|
|
# Audio/Media (large files)
|
|
*.mp3
|
|
*.wav
|
|
*.m4a
|
|
*.ogg
|
|
|
|
# Sessions
|
|
sessions/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Whisper models (downloaded automatically)
|
|
*.pt
|
|
|
|
# Temporary
|
|
*.tmp
|
|
*.log
|
|
|
|
# Large model files (download separately)
|
|
*.onnx
|
|
*.safetensors
|
|
*.tar.bz2
|
|
*.bin
|
|
models/
|
|
asset/
|
|
kokoro-v1.0.onnx
|
|
voices-v1.0.bin
|
|
|
|
# Reference voices for TTS
|
|
ref_audio/
|
|
|
|
# YouTube OAuth credentials
|
|
youtube_client_secrets.json
|
|
youtube_token.json
|
|
|
|
# Claude settings (local)
|
|
.claude/
|