jhlfrfufyfn commited on
Commit
6698efb
1 Parent(s): e68eea4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -8
README.md CHANGED
@@ -1,14 +1,19 @@
1
  # Bel-TTS
2
 
3
  ## Install
4
- Run in your terminal `pip install TTS`, and download the files from this repo.
 
 
 
 
5
 
6
  ## Running synthesizer
7
  Example for the synthesizing command:
8
-
9
- tts --text "Гепарды жывуць у адкрытых і прасторных месцах, дзе ёсць шмат здабычы, гэта паўпустыні і саваны." \ <br>
10
- --config_path path/to/config.json \ <br>
11
- --model_path path/to/model.pth \ <br>
12
- --out_path folder/to/save/output.wav \ <br>
13
- --vocoder_path path/to/vocoder.pth \ <br>
14
- --vocoder_config_path path/to/vocoder_config.json
 
 
1
  # Bel-TTS
2
 
3
  ## Install
4
+ Install TTS with pip:
5
+ ```
6
+ pip install TTS
7
+ ```
8
+ Download the files from this repo.
9
 
10
  ## Running synthesizer
11
  Example for the synthesizing command:
12
+ ```
13
+ tts --text "Гепарды жывуць у адкрытых і прасторных месцах, дзе ёсць шмат здабычы, гэта паўпустыні і саваны." \
14
+ --config_path path/to/config.json \
15
+ --model_path path/to/model.pth \
16
+ --out_path folder/to/save/output.wav \
17
+ --vocoder_path path/to/vocoder.pth \
18
+ --vocoder_config_path path/to/vocoder_config.json
19
+ ```