- 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>
11 lines
143 B
Bash
11 lines
143 B
Bash
#!/bin/bash
|
|
# Start the API server
|
|
# Usage: ./server.sh [port]
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
PORT="${1:-3000}"
|
|
|
|
export PORT="$PORT"
|
|
npm run server
|