Spaces:
Runtime error
Runtime error
Commit
·
cd9cb27
1
Parent(s):
4ebcd7e
Update app.py
Browse files
app.py
CHANGED
|
@@ -93,12 +93,12 @@ app = gr.Blocks()
|
|
| 93 |
|
| 94 |
with app:
|
| 95 |
gr.Markdown("# <center>🥳💕🎶 OpenVoice 3秒语音情感真实复刻</center>")
|
| 96 |
-
gr.Markdown("## <center>🌟 只需3
|
| 97 |
gr.Markdown("### <center>🌊 更多精彩应用,敬请关注[滔滔AI](http://www.talktalkai.com);滔滔AI,为爱滔滔!💕</center>")
|
| 98 |
with gr.Tab("💕语音情感合成"):
|
| 99 |
with gr.Row():
|
| 100 |
with gr.Column():
|
| 101 |
-
inp1 = gr.Textbox(lines=
|
| 102 |
inp2 = gr.Audio(label="请上传您喜欢的语音文件", type="filepath")
|
| 103 |
inp3 = gr.Dropdown(label="请选择一种语音情感", info="🙂default😊friendly🤫whispering😄cheerful😱terrified😡angry😢sad", choices=["default", "friendly", "whispering", "cheerful", "terrified", "angry", "sad"], value="default")
|
| 104 |
|
|
@@ -111,7 +111,7 @@ with app:
|
|
| 111 |
with gr.Tab("🌟多语言声音复刻"):
|
| 112 |
with gr.Row():
|
| 113 |
with gr.Column():
|
| 114 |
-
inp4 = gr.Textbox(lines=
|
| 115 |
inp5 = gr.Audio(label="请上传您喜欢的语音文件", type="filepath")
|
| 116 |
inp6 = gr.Dropdown(choices=list(language_dict.keys()), value=list(language_dict.keys())[15], label="请选择文本对应的语言")
|
| 117 |
|
|
|
|
| 93 |
|
| 94 |
with app:
|
| 95 |
gr.Markdown("# <center>🥳💕🎶 OpenVoice 3秒语音情感真实复刻</center>")
|
| 96 |
+
gr.Markdown("## <center>🌟 只需3秒语音,一键复刻说话语气及情感,喜怒哀乐、应有尽有! </center>")
|
| 97 |
gr.Markdown("### <center>🌊 更多精彩应用,敬请关注[滔滔AI](http://www.talktalkai.com);滔滔AI,为爱滔滔!💕</center>")
|
| 98 |
with gr.Tab("💕语音情感合成"):
|
| 99 |
with gr.Row():
|
| 100 |
with gr.Column():
|
| 101 |
+
inp1 = gr.Textbox(lines=3, label="请输入您想转换的英文文本")
|
| 102 |
inp2 = gr.Audio(label="请上传您喜欢的语音文件", type="filepath")
|
| 103 |
inp3 = gr.Dropdown(label="请选择一种语音情感", info="🙂default😊friendly🤫whispering😄cheerful😱terrified😡angry😢sad", choices=["default", "friendly", "whispering", "cheerful", "terrified", "angry", "sad"], value="default")
|
| 104 |
|
|
|
|
| 111 |
with gr.Tab("🌟多语言声音复刻"):
|
| 112 |
with gr.Row():
|
| 113 |
with gr.Column():
|
| 114 |
+
inp4 = gr.Textbox(lines=3, label="请输入您想转换的英文文本")
|
| 115 |
inp5 = gr.Audio(label="请上传您喜欢的语音文件", type="filepath")
|
| 116 |
inp6 = gr.Dropdown(choices=list(language_dict.keys()), value=list(language_dict.keys())[15], label="请选择文本对应的语言")
|
| 117 |
|