Spaces:
Running
Running
UPDATE
Browse files
app.py
CHANGED
@@ -61,7 +61,7 @@ def process_audio(input_file,
|
|
61 |
# )
|
62 |
|
63 |
|
64 |
-
with gr.Blocks() as iface:
|
65 |
inputs = [
|
66 |
gr.Audio(label="Upload your music file", type="filepath"),
|
67 |
|
@@ -86,6 +86,6 @@ with gr.Blocks() as iface:
|
|
86 |
]
|
87 |
outputs = gr.Audio(label="Download processed music", type="filepath")
|
88 |
btn = gr.Button("Run")
|
89 |
-
btn.click(fn=process_audio, inputs=inputs, outputs=outputs,
|
90 |
|
91 |
iface.launch(share=False)
|
|
|
61 |
# )
|
62 |
|
63 |
|
64 |
+
with gr.Blocks(title="Audio Fusion") as iface:
|
65 |
inputs = [
|
66 |
gr.Audio(label="Upload your music file", type="filepath"),
|
67 |
|
|
|
86 |
]
|
87 |
outputs = gr.Audio(label="Download processed music", type="filepath")
|
88 |
btn = gr.Button("Run")
|
89 |
+
btn.click(fn=process_audio, inputs=inputs, outputs=outputs, api_name="AudioFusion")
|
90 |
|
91 |
iface.launch(share=False)
|