voice2text/start_api.sh
DJP 846693b097 Initial commit: Voice to Text with Whisper & DeepL Translation
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>
2025-10-21 11:54:39 -04:00

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