kevinwang676 commited on
Commit
e0e1260
1 Parent(s): d4511ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -306,7 +306,8 @@ with gr.Blocks() as app:
306
  inp0 = gr.Textbox(type='password', label='请输入您的OpenAI API Key')
307
  inp1 = gr.File(file_count="single", label="请上传一集视频对应的SRT文件")
308
  inp2 = gr.Audio(label="请上传一集视频的配音文件", type="filepath")
309
- inp3 = gr.Dropdown(choices=['alloy', 'echo', 'fable', 'onyx', 'nova', 'shimmer'], label='请选择一个说话人提供基础音色', info="试听音色链接:https://platform.openai.com/docs/guides/text-to-speech/voice-options", value='alloy')
 
310
  #inp4 = gr.Dropdown(label="请选择用于分离伴奏的模型", info="UVR-HP5去除背景音乐效果更好,但会对人声造成一定的损伤", choices=["UVR-HP2", "UVR-HP5"], value="UVR-HP5")
311
  inp4 = gr.Checkbox(label="SRT文件是否为双语字幕", info="若为双语字幕,请打勾选择(SRT文件中需要先出现中文字幕,后英文字幕;中英字幕各占一行)")
312
  btn = gr.Button("一键开启AI配音吧💕", variant="primary")
 
306
  inp0 = gr.Textbox(type='password', label='请输入您的OpenAI API Key')
307
  inp1 = gr.File(file_count="single", label="请上传一集视频对应的SRT文件")
308
  inp2 = gr.Audio(label="请上传一集视频的配音文件", type="filepath")
309
+
310
+ inp3 = gr.Dropdown(choices=[ voice.name for voice in all_voices ], label='请选择一个说话人提供基础音色', info="试听音色链接:https://platform.openai.com/docs/guides/text-to-speech/voice-options", value='Rachel')
311
  #inp4 = gr.Dropdown(label="请选择用于分离伴奏的模型", info="UVR-HP5去除背景音乐效果更好,但会对人声造成一定的损伤", choices=["UVR-HP2", "UVR-HP5"], value="UVR-HP5")
312
  inp4 = gr.Checkbox(label="SRT文件是否为双语字幕", info="若为双语字幕,请打勾选择(SRT文件中需要先出现中文字幕,后英文字幕;中英字幕各占一行)")
313
  btn = gr.Button("一键开启AI配音吧💕", variant="primary")