File size: 733 Bytes
265da89 96ecc7d 453467a 0e37246 dc69d92 265da89 e68eea4 6698efb e8b4313 e68eea4 6698efb f7473b7 bf4daca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
---
title: bel-tts
colorFrom: gray
colorTo: gray
sdk: gradio
sdk_version: 3.0.24
app_file: app.py
pinned: false
license: mit
---
# Bel-TTS
## Install
Install TTS with pip:
```
pip install TTS
```
Download files from this repo.
## Running synthesizer
Example for the synthesizing command:
```
tts --text "Гепарды жывуць у адкрытых і прасторных месцах, дзе ёсць шмат здабычы." \
--config_path ${PATH_TO_FILE}/config.json \
--model_path ${PATH_TO_FILE}/model.pth \
--out_path ${PATH_TO_FILE}/output.wav \
--vocoder_path ${PATH_TO_FILE}/vocoder.pth \
--vocoder_config_path ${PATH_TO_FILE}/vocoder_config.json
```
(change ${PATH_TO_FILE} to your directory) |