https://github.com/xanaawakens/tts-platform
The TTS Platform leverages the power of Coqui TTS, an advanced open-source framework, to deliver a high-quality text-to-speech (TTS) experience. It caters to diverse user needs, offering natural-sounding voice generation with extensive customization options.
https://github.com/xanaawakens/tts-platform
coqui-tts tts
Last synced: 2 months ago
JSON representation
The TTS Platform leverages the power of Coqui TTS, an advanced open-source framework, to deliver a high-quality text-to-speech (TTS) experience. It caters to diverse user needs, offering natural-sounding voice generation with extensive customization options.
- Host: GitHub
- URL: https://github.com/xanaawakens/tts-platform
- Owner: xanaawakens
- Created: 2024-12-30T09:03:26.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2025-01-20T09:32:14.000Z (5 months ago)
- Last Synced: 2025-04-06T08:03:55.439Z (2 months ago)
- Topics: coqui-tts, tts
- Language: Python
- Homepage:
- Size: 53.7 KB
- Stars: 13
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TTS Platform
A powerful Text-to-Speech platform using Coqui TTS with customizable voice features.
## Features
- Natural and expressive text-to-speech conversion
- Voice customization (pitch, speed, emotions)
- Custom voice model training
- User-friendly web interface
- Multi-language support## Tech Stack
- Backend: FastAPI + Coqui TTS
- Frontend: React
- ML: PyTorch + Coqui TTS models## Setup
1. Create a virtual environment:
```bash
python -m venv venv
source venv/bin/activate # On Unix/macOS
```2. Install dependencies:
```bash
pip install -r requirements.txt
```3. Run the development server:
```bash
cd app/api
uvicorn main:app --reload
```4. Start the frontend (in a separate terminal):
```bash
cd app/frontend
npm install
npm start
```## Project Structure
```
tts-platform/
├── app/
│ ├── api/ # FastAPI backend
│ ├── frontend/ # React frontend
│ └── models/ # TTS model storage
├── requirements.txt # Python dependencies
└── README.md
```## License
MIT avixiii