Spaces:
Configuration error
Configuration error
# Elite Transcript AI π
GPU-accelerated transcription service powered by Whisper-v3 and DeepSeek Speech API with automatic fallback.
## Features
- ποΈ High-accuracy verbatim transcription
- β‘ GPU-accelerated processing (when available)
- π Automatic fallback to DeepSeek Speech API
- πΌ Supports YouTube & TikTok URLs
- π Multiple export formats (TXT, SRT, DOCX)
- ποΈ Batch processing mode
## Tech Stack
- Frontend: Vite + React + TailwindCSS
- Backend: FastAPI + Whisper-v3 + DeepSeek SDK
- Deployment: Vercel (frontend) + Render/AWS (backend)
## Setup
### Prerequisites
- Node.js 18+
- Python 3.10+
- NVIDIA GPU with CUDA (recommended)
- FFmpeg installed
### Installation
1. Clone the repository
```bash
git clone https://github.com/yourusername/elite-transcript-ai.git
cd elite-transcript-ai
- Setup backend
cd server
python -m venv venv
source venv/bin/activate # Linux/Mac
# venv\Scripts\activate # Windows
pip install -r requirements.txt
- Setup frontend
cd ../client
npm install
- Configure environment variables
Copy
.env.exampleto.envand fill in your API keys.
Running Locally
Start backend:
cd server
uvicorn main:app --reload
Start frontend:
cd ../client
npm run dev
Deployment
See DEPLOYMENT.md for detailed cloud deployment instructions.
Environment Variables
See .env.example for all required configurations.
```