- YouTube video/playlist download as MP3 (yt-dlp) - Audio transcription with OpenAI (gpt-4o-transcribe, whisper-1) - Translation with GPT-4o-mini (chunking for long texts) - Web interface with progress bars and drag & drop - CLI and REST API interfaces - Linux shell scripts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
331 B
Plaintext
44 lines
331 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# Output directory
|
|
output/
|
|
|
|
# Audio files
|
|
*.mp3
|
|
*.wav
|
|
*.m4a
|
|
*.ogg
|
|
*.flac
|
|
*.aac
|
|
|
|
# Video files
|
|
*.mp4
|
|
*.webm
|
|
*.mkv
|
|
*.avi
|
|
|
|
# Text/transcription files
|
|
*.txt
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|