Spaces:
Build error
Build error
...
Browse files
app.py
CHANGED
@@ -95,11 +95,11 @@ with app:
|
|
95 |
with gr.Row():
|
96 |
tts_input1 = gr.TextArea(
|
97 |
label="请输入文本(仅支持日语)", value="你好,世界!")
|
98 |
-
tts_input2 = gr.Dropdown(choices=[character_dict.keys], type="
|
99 |
tts_submit = gr.Button("用文本合成", variant="primary")
|
100 |
tts_output2 = gr.Audio(label="Output")
|
101 |
model_submit.click(load_model, [config_path, pth_path], [output_1])
|
102 |
-
tts_submit.click(infer, [tts_input2
|
103 |
gr.HTML("""
|
104 |
<div style="text-align:center">
|
105 |
仅供学习交流,不可用于商业或非法用途
|
|
|
95 |
with gr.Row():
|
96 |
tts_input1 = gr.TextArea(
|
97 |
label="请输入文本(仅支持日语)", value="你好,世界!")
|
98 |
+
tts_input2 = gr.Dropdown(choices=[character_dict.keys], type="value",label="选择角色", optional=False)
|
99 |
tts_submit = gr.Button("用文本合成", variant="primary")
|
100 |
tts_output2 = gr.Audio(label="Output")
|
101 |
model_submit.click(load_model, [config_path, pth_path], [output_1])
|
102 |
+
tts_submit.click(infer, [character_dict[tts_input2], tts_input1], [tts_output2])
|
103 |
gr.HTML("""
|
104 |
<div style="text-align:center">
|
105 |
仅供学习交流,不可用于商业或非法用途
|