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

https://github.com/ericc-ch/edge-tts-api

API Wrapper around rany2/edge-tts for program that isn't written in Python.
https://github.com/ericc-ch/edge-tts-api

api text-to-speech

Last synced: 11 months ago
JSON representation

API Wrapper around rany2/edge-tts for program that isn't written in Python.

Awesome Lists containing this project

README

          

# Edge TTS API

Small Flask wrapper to use edge-tts. Easier to use for my Sludge AI project rather than being dependent on edge-tts being intalled via pipx.

## Run Locally

I need this because I'm not good with Python.

Go to the project directory

```bash
cd edge-tts-api
```

Setup a virtual environment

```bash
python3 -m venv .venv

```

Activate the virtual environment

```bash
. .venv/bin/activate

```

Install the requirements

```bash
pip install -r requirements.txt
```