noblebarkrr commited on
Commit
c8f49bb
·
verified ·
1 Parent(s): 33edcc6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -69,6 +69,9 @@ with gr.Blocks(title="Phantom Center Extraction", theme=gr.themes.Soft()) as dem
69
  side = gr.Audio(type="filepath", interactive=False, label="Other", visible=True)
70
  extract_btn.click(
71
  fn=extract_phantom_center,
72
- inputs=[file_input],
73
  outputs=[side, mid]
74
  )
 
 
 
 
69
  side = gr.Audio(type="filepath", interactive=False, label="Other", visible=True)
70
  extract_btn.click(
71
  fn=extract_phantom_center,
72
+ inputs=[input_audio],
73
  outputs=[side, mid]
74
  )
75
+
76
+ if __name__ == "__main__":
77
+ demo.launch(share=True)