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.
- Host: GitHub
- URL: https://github.com/ericc-ch/edge-tts-api
- Owner: ericc-ch
- Archived: true
- Created: 2024-07-22T19:11:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-29T19:18:11.000Z (almost 2 years ago)
- Last Synced: 2024-12-20T17:17:25.192Z (over 1 year ago)
- Topics: api, text-to-speech
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```