Update app.py
Browse files
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=[
|
| 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)
|