赞
踩
原因:openvoice_app.py文件的 gradio 插件使用了gr.Dropdown函数中的max_choices参数,需要把multiselect设置为True
完整代码如下:
style_gr = gr.Dropdown(
label="Style",
info="Select a style of output audio for the synthesised speech. (Chinese only support 'default' now)",
choices=['default', 'whispering', 'cheerful', 'terrified', 'angry', 'sad', 'friendly'],
max_choices=1,
value="default",
multiselect=True
)
```
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。