This project utilizes the Kokoro Voice Model to generate high-quality AI voiceovers. Users can input text, select from multiple voice options, and generate realistic audio.
- Frontend: React (with Framer Motion for animations)
- Backend: Flask (handles text-to-speech processing)
- Audio Processing: Combines multiple short audio clips into a seamless voiceover
- https://huggingface.co/hexgrad/Kokoro-82M
Ensure you have Python 3.8+ and Node.js installed on your system.
git clone https://github.com/rahul07bagul/Voiceover-Generation.git
cd voiceover-generation/server
python -m venv venv
source venv/bin/activate # On macOS/Linux
venv\\Scripts\\activate # On Windows
pip install -r requirements.txt
python server.py
cd client/frontend
npm install
npm start