https://github.com/bes-dev/tts-runpod-serverless-worker
Serverless implementation of Text-To-Speech
https://github.com/bes-dev/tts-runpod-serverless-worker
Last synced: about 1 month ago
JSON representation
Serverless implementation of Text-To-Speech
- Host: GitHub
- URL: https://github.com/bes-dev/tts-runpod-serverless-worker
- Owner: bes-dev
- License: apache-2.0
- Created: 2024-03-21T13:27:36.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-14T14:41:38.000Z (about 2 years ago)
- Last Synced: 2024-04-24T15:08:40.242Z (about 2 years ago)
- Language: Python
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Text-To-Speech Serverless RunPod Worker
## RunPod Endpoint
This repository contains the worker for the xTTSv2 AI Endpoints.
## Docker Image
```bash
docker build .
```
or
```bash
docker pull devbes/tts-runpod-serverless-worker:latest
```
## Continuous Deployment
This worker follows a modified version of the [worker template](https://github.com/runpod-workers/worker-template) where the Docker build workflow contains additional SD models to be built and pushed.
## API
```json
{
"input": {
"language": ,
"voice": {
"speaker_0": "url"
"speaker_1": "url"
},
"text": [
["speaker_0", "text"],
["speaker_1", "text"],
...
["speaker_1", "text"],
],
"gpt_cond_len": ,
"max_ref_len": ,
"speed":
"enhance_audio":
}
}
```