Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -38,7 +38,7 @@ def separate_audio(audio_path, stem_count):
|
|
| 38 |
# Define the Gradio interface
|
| 39 |
iface = gr.Interface(
|
| 40 |
fn=separate_audio,
|
| 41 |
-
inputs=[gr.Audio(type="filepath"), 2],
|
| 42 |
outputs=[gr.Audio(label='Accompaniment'), gr.Audio(label='Vocals')]
|
| 43 |
)
|
| 44 |
|
|
|
|
| 38 |
# Define the Gradio interface
|
| 39 |
iface = gr.Interface(
|
| 40 |
fn=separate_audio,
|
| 41 |
+
inputs=[gr.Audio(type="filepath"), str(2)],
|
| 42 |
outputs=[gr.Audio(label='Accompaniment'), gr.Audio(label='Vocals')]
|
| 43 |
)
|
| 44 |
|