lj1995 commited on
Commit
1cc8f44
·
verified ·
1 Parent(s): 48c5960

Update inference_webui.py

Browse files
Files changed (1) hide show
  1. inference_webui.py +14 -13
inference_webui.py CHANGED
@@ -763,19 +763,20 @@ with gr.Blocks(
763
  theme=theme,
764
  analytics_enabled=False,
765
  ) as app:
766
- gr.Markdown(
767
- value="""# GPT-SoVITS-ProPlus Zero-shot TTS Demo
768
- ## https://github.com/RVC-Boss/GPT-SoVITS
769
- Input 3 to 10s reference audio to guide the time-bre, speed, emotion of voice, and generate the speech you want by input the inference text. <br>
770
- 输入3至10秒的参考音频来引导待合成语音的音色、语速和情感,然后输入待合成目标文本,生成目标语音. <br>
771
- Cross-lingual Support: Inference in languages different from the training dataset, currently supporting English, Japanese, Korean and Cantonese.<br>
772
- 目前支持中日英韩粤跨语种混合合成。<br>
773
- If the quota has been reached, you can try the backup space at https://huggingface.co/spaces/XXXXRT/GPT-SoVITS-ProPlus<br>
774
- 如果遇到限额不够可以去备用空间https://huggingface.co/spaces/XXXXRT/GPT-SoVITS-ProPlus 试试<br>
775
- This demo is open source under the MIT license. The author does not have any control over it. Users who use the software and distribute the sounds exported by the software are solely responsible. If you do not agree with this clause, you cannot use or reference any codes and files within this demo. <br>
776
- demoMIT协议开源, 作者不对软件具备任何控制力, 使用软件者、传播软件导出的声音者自负全责. 如不认可该条款, 则不能使用或引用该demo内的任何代码和文件.
777
- """
778
- )
 
779
  gr.Markdown(html_center(i18n("*请上传并填写参考信息"), "h3"))
780
  with gr.Row(equal_height=True):
781
  inp_ref = gr.Audio(label=i18n("请上传3~10秒内参考音频,超过会报错!"), type="filepath")
 
763
  theme=theme,
764
  analytics_enabled=False,
765
  ) as app:
766
+ with gr.Accordion(label="GPT-SoVITS-ProPlus Zero-shot TTS Demo Readme", open=True):
767
+ gr.Markdown(
768
+ value="""
769
+ ## https://github.com/RVC-Boss/GPT-SoVITS
770
+ Input 3 to 10s reference audio to guide the time-bre, speed, emotion of voice, and generate the speech you want by input the inference text. <br>
771
+ 输入3至10秒的参考音频来引导待合成语音的音色、语速和情感,然后输入待合成目标文本,生成目标语音. <br>
772
+ Cross-lingual Support: Inference in languages different from the training dataset, currently supporting English, Japanese, Korean and Cantonese.<br>
773
+ 目前支持中日英韩粤跨语种混合合成。<br>
774
+ If the quota has been reached, you can try the backup space at https://huggingface.co/spaces/XXXXRT/GPT-SoVITS-ProPlus<br>
775
+ 如果遇到限额不够可以去备用空间https://huggingface.co/spaces/XXXXRT/GPT-SoVITS-ProPlus 试试<br>
776
+ This demo is open source under the MIT license. The author does not have any control over it. Users who use the software and distribute the sounds exported by the software are solely responsible. If you do not agree with this clause, you cannot use or reference any codes and files within this demo. <br>
777
+ 本demo以MIT协议开源, 作者不对软件具备任何控制力, 使用软件者、传播软件导出的声音者自负全责. 如不认可该条款, 则不能使用或引用该demo内的任何代码和文件.
778
+ """
779
+ )
780
  gr.Markdown(html_center(i18n("*请上传并填写参考信息"), "h3"))
781
  with gr.Row(equal_height=True):
782
  inp_ref = gr.Audio(label=i18n("请上传3~10秒内参考音频,超过会报错!"), type="filepath")