An open API service indexing awesome lists of open source software.

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

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":
}
}
```