Spaces:
Running
Running
kevinwang676
commited on
Commit
•
285602c
1
Parent(s):
1a82ed1
Update app.py
Browse files
app.py
CHANGED
@@ -237,11 +237,8 @@ def convert(start_time, song_name_src, song_name_ref, ref_audio, check_song, aut
|
|
237 |
|
238 |
vad("audio_ref.wav")
|
239 |
else:
|
240 |
-
|
241 |
|
242 |
-
mono_audio = multi_channel_audio.set_channels(1)
|
243 |
-
|
244 |
-
mono_audio.export("voiced_audio.wav", format="wav")
|
245 |
|
246 |
|
247 |
#if os.path.isdir(f"./output/{split_model}/{song_id_src}")==False:
|
@@ -306,7 +303,7 @@ with app:
|
|
306 |
btn = gr.Button("一键开启AI翻唱之旅吧💕", variant="primary")
|
307 |
with gr.Column():
|
308 |
ref_audio = gr.Audio(label="您也可以选择从本地上传一段音色参考音频。需要为去除伴奏后的音频,建议上传长度为60~90s左右的.wav文件;如果您希望通过歌曲名自动提取参考音频,请勿在此上传音频文件", type="filepath", interactive=True)
|
309 |
-
out = gr.Audio(label="AI歌手为您倾情演唱的歌曲🎶", type="filepath", interactive=
|
310 |
|
311 |
btn.click(convert, [inp0, inp1, inp2, ref_audio, inp3, inp4, inp5, inp6, inp7], out)
|
312 |
|
|
|
237 |
|
238 |
vad("audio_ref.wav")
|
239 |
else:
|
240 |
+
vad(ref_audio)
|
241 |
|
|
|
|
|
|
|
242 |
|
243 |
|
244 |
#if os.path.isdir(f"./output/{split_model}/{song_id_src}")==False:
|
|
|
303 |
btn = gr.Button("一键开启AI翻唱之旅吧💕", variant="primary")
|
304 |
with gr.Column():
|
305 |
ref_audio = gr.Audio(label="您也可以选择从本地上传一段音色参考音频。需要为去除伴奏后的音频,建议上传长度为60~90s左右的.wav文件;如果您希望通过歌曲名自动提取参考音频,请勿在此上传音频文件", type="filepath", interactive=True)
|
306 |
+
out = gr.Audio(label="AI歌手为您倾情演唱的歌曲🎶", type="filepath", interactive=False)
|
307 |
|
308 |
btn.click(convert, [inp0, inp1, inp2, ref_audio, inp3, inp4, inp5, inp6, inp7], out)
|
309 |
|