Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -43,9 +43,9 @@ def gradio_interface(audio_file, stem_count):
|
|
43 |
return [gr.Audio(file_path, label=description) for description, file_path in separated_audios]
|
44 |
|
45 |
iface = gr.Interface(
|
46 |
-
fn=
|
47 |
inputs=[gr.Audio(type="filepath"), gr.Radio([2, 4, 5])],
|
48 |
-
outputs=
|
49 |
)
|
50 |
|
51 |
iface.launch()
|
|
|
43 |
return [gr.Audio(file_path, label=description) for description, file_path in separated_audios]
|
44 |
|
45 |
iface = gr.Interface(
|
46 |
+
fn=separate_audio,
|
47 |
inputs=[gr.Audio(type="filepath"), gr.Radio([2, 4, 5])],
|
48 |
+
outputs="text",
|
49 |
)
|
50 |
|
51 |
iface.launch()
|