From f5446d4f1e8d4c24cc8a868157fa8d60efbf3bdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Tue, 30 Mar 2021 14:46:14 +0200 Subject: [PATCH] [ci skip]readme udpate --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1c43b53a..7e7b9efe 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ Run a tts and a vocoder model from the released model list. (Simply copy and pas tts --text "Text for TTS" \ --model_name "///" \ --vocoder_name "///" \ - --out_path folder/to/save/output/ + --out_path folder/to/save/output.wav ``` Run your own TTS model (Using Griffin-Lim Vocoder) @@ -183,7 +183,7 @@ Run your own TTS model (Using Griffin-Lim Vocoder) tts --text "Text for TTS" \ --model_path path/to/model.pth.tar \ --config_path path/to/config.json \ - --out_path output/path/speech.wav + --out_path folder/to/save/output.wav ``` Run your own TTS and Vocoder models @@ -191,7 +191,7 @@ Run your own TTS and Vocoder models tts --text "Text for TTS" \ --model_path path/to/config.json \ --config_path path/to/model.pth.tar \ - --out_path output/path/speech.wav \ + --out_path folder/to/save/output.wav \ --vocoder_path path/to/vocoder.pth.tar \ --vocoder_config_path path/to/vocoder_config.json ```