From 11a48901bac5c8a3df9506ba883cfcbd160af0ac Mon Sep 17 00:00:00 2001 From: TianYuan Date: Fri, 10 Dec 2021 15:51:17 +0800 Subject: [PATCH] Update README.md --- demos/text_to_speech/README.md | 36 +++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/demos/text_to_speech/README.md b/demos/text_to_speech/README.md index caa372ed..b8b75f83 100644 --- a/demos/text_to_speech/README.md +++ b/demos/text_to_speech/README.md @@ -19,26 +19,26 @@ Input of this demo should be a text of the specific language that can be passed - Chinese ```bash paddlespeech tts --input "你好,欢迎使用百度飞桨深度学习框架!" - ``` + ``` The default acoustic model is `Fastspeech2`, and the default vocoder is `Parallel WaveGAN`. - - Chinese, use `SpeedySpeech` as acoustic model + - Chinese, use `SpeedySpeech` as acoustic model ```bash - paddlespeech tts --am speedyspeech_csmsc --input "你好,欢迎使用百度飞桨深度学习框架!" - ``` - - Chinese, multi speaker - ```bash - paddlespeech tts --am fastspeech2_aishell3 --voc pwgan_aishell3 --input "你好,欢迎使用百度飞桨深度学习框架!" --spk_id 0 - ``` - You can change `spk_id` here. - - English - ```bash - paddlespeech tts --am fastspeech2_ljspeech --voc pwgan_ljspeech --lang en --input "hello world" - ``` - - English, multi speaker - ```bash - paddlespeech tts --am fastspeech2_vctk --voc pwgan_vctk --input "hello, boys" --lang en --spk_id 0 - ``` - You can change `spk_id` here. + paddlespeech tts --am speedyspeech_csmsc --input "你好,欢迎使用百度飞桨深度学习框架!" + ``` + - Chinese, multi speaker + ```bash + paddlespeech tts --am fastspeech2_aishell3 --voc pwgan_aishell3 --input "你好,欢迎使用百度飞桨深度学习框架!" --spk_id 0 + ``` + You can change `spk_id` here. + - English + ```bash + paddlespeech tts --am fastspeech2_ljspeech --voc pwgan_ljspeech --lang en --input "hello world" + ``` + - English, multi speaker + ```bash + paddlespeech tts --am fastspeech2_vctk --voc pwgan_vctk --input "hello, boys" --lang en --spk_id 0 + ``` + You can change `spk_id` here. - Usage: -- GitLab