drewThomasson commited on
Commit
9572287
·
verified ·
1 Parent(s): 95540a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -31,9 +31,7 @@ with gr.Blocks() as demo:
31
  convert_button = gr.Button("Convert Voice")
32
  output_audio = gr.Audio(label="Converted Voice", type="filepath")
33
 
34
- with gr.Progress() as progress:
35
- convert_button.click(voice_conversion, inputs=[input_audio, target_voice], outputs=output_audio,
36
- progress=progress)
37
 
38
  # Launch with public=True for public URL access and share link
39
  demo.launch(share=True)
 
31
  convert_button = gr.Button("Convert Voice")
32
  output_audio = gr.Audio(label="Converted Voice", type="filepath")
33
 
34
+ convert_button.click(voice_conversion, inputs=[input_audio, target_voice], outputs=output_audio)
 
 
35
 
36
  # Launch with public=True for public URL access and share link
37
  demo.launch(share=True)