Features: - OpenAI Whisper for audio transcription - DeepL API for translation (30+ languages) - Multiple output formats: TXT, VTT, SRT - Flask Python API backend - PHP frontend with black/gold theme - Support for 350MB files - Generates both original and translated files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
194 B
Bash
Executable file
9 lines
194 B
Bash
Executable file
#!/bin/bash
|
|
# Start the Whisper API server
|
|
|
|
# Activate virtual environment
|
|
source venv/bin/activate
|
|
|
|
# Start the API
|
|
echo "Starting Whisper API server on http://localhost:5010..."
|
|
python api.py
|