- 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>
12 lines
311 B
Plaintext
12 lines
311 B
Plaintext
# OpenAI API Key for Whisper transcription
|
|
OPENAI_API_KEY=your_openai_api_key_here
|
|
|
|
# Anthropic API Key for Claude Haiku translation (optional)
|
|
ANTHROPIC_API_KEY=your_anthropic_api_key_here
|
|
|
|
# Server port (optional, default: 3000)
|
|
PORT=3000
|
|
|
|
# Output directory (optional, default: ./output)
|
|
OUTPUT_DIR=./output
|