Features: - Video download from TikTok/Douyin using yt-dlp - Audio transcription with OpenAI Whisper - GPT-4 translation (direct/summarize/rewrite modes) - Subtitle generation with ASS format - Video trimming with frame-accurate preview - BGM integration with volume control - Intro text overlay support - Thumbnail generation with text overlay Tech stack: - Backend: FastAPI, Python 3.11+ - Frontend: React, Vite, TailwindCSS - Video processing: FFmpeg - AI: OpenAI Whisper, GPT-4 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
451 B
Plaintext
47 lines
451 B
Plaintext
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Data directories
|
|
data/downloads/
|
|
data/processed/
|
|
data/jobs.json
|
|
backend/data/downloads/
|
|
backend/data/processed/
|
|
backend/data/jobs.json
|
|
backend/data/cookies/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
.venv/
|
|
venv_*/
|
|
**/venv/
|
|
**/venv_*/
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
.pnpm-store/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Whisper model cache
|
|
~/.cache/whisper/
|