Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,7 @@ def generate_audio(tts_text, mode_checkbox_group, sft_dropdown, prompt_text, pro
|
|
100 |
if prompt_wav is None:
|
101 |
gr.Warning('您正在使用跨语种复刻模式, 请提供prompt音频')
|
102 |
return (target_sr, default_data)
|
103 |
-
gr.Info('您正在使用跨语种复刻模式,
|
104 |
# if in zero_shot cross_lingual, please make sure that prompt_text and prompt_wav meets requirements
|
105 |
if mode_checkbox_group in ['3s极速复刻', '跨语种复刻']:
|
106 |
if prompt_wav is None:
|
@@ -149,7 +149,7 @@ def main():
|
|
149 |
gr.Markdown("### <center>🤗 更多精彩,尽在[滔滔AI](https://www.talktalkai.com/);滔滔AI,为爱滔滔!💕</center>")
|
150 |
|
151 |
with gr.Row():
|
152 |
-
tts_text = gr.Textbox(label="请填写您希望声音复刻的文本内容", lines=3, placeholder="想说却还没说的,还很多...")
|
153 |
mode_checkbox_group = gr.Radio(choices=inference_mode_list, label='请选择声音复刻类型', value=inference_mode_list[0])
|
154 |
instruction_text = gr.Text(label="📔 操作指南", value=instruct_dict[inference_mode_list[0]], scale=0.5)
|
155 |
sft_dropdown = gr.Dropdown(choices=sft_spk, label='选择预训练音色', value=sft_spk[0], scale=0.25, visible=False)
|
|
|
100 |
if prompt_wav is None:
|
101 |
gr.Warning('您正在使用跨语种复刻模式, 请提供prompt音频')
|
102 |
return (target_sr, default_data)
|
103 |
+
gr.Info('您正在使用跨语种复刻模式, 请确保合成文本和参考音频对应的文本为不同语言')
|
104 |
# if in zero_shot cross_lingual, please make sure that prompt_text and prompt_wav meets requirements
|
105 |
if mode_checkbox_group in ['3s极速复刻', '跨语种复刻']:
|
106 |
if prompt_wav is None:
|
|
|
149 |
gr.Markdown("### <center>🤗 更多精彩,尽在[滔滔AI](https://www.talktalkai.com/);滔滔AI,为爱滔滔!💕</center>")
|
150 |
|
151 |
with gr.Row():
|
152 |
+
tts_text = gr.Textbox(label="请填写您希望声音复刻的文本内容", lines=3, info="中文文本建议不超过100个字,英文文本不超过100个单词", placeholder="想说却还没说的,还很多...")
|
153 |
mode_checkbox_group = gr.Radio(choices=inference_mode_list, label='请选择声音复刻类型', value=inference_mode_list[0])
|
154 |
instruction_text = gr.Text(label="📔 操作指南", value=instruct_dict[inference_mode_list[0]], scale=0.5)
|
155 |
sft_dropdown = gr.Dropdown(choices=sft_spk, label='选择预训练音色', value=sft_spk[0], scale=0.25, visible=False)
|