Spaces:
Running
Running
UPDATE
Browse files
app.py
CHANGED
@@ -89,12 +89,11 @@ with gr.Blocks(title="Audio Fusion") as iface:
|
|
89 |
reverb_check.change(re_v, inputs=[reverb_check], outputs=[re_col])
|
90 |
# =====================================================
|
91 |
|
92 |
-
components = [input_audio, dimension_check, pan, jump, time, volx, speed_check, speed, reverb_check, room, damp, width, wet, dry]
|
93 |
with gr.Row():
|
94 |
-
btnClear = gr.ClearButton(components=
|
95 |
btnRun = gr.Button("Run", size="sm", variant="primary")
|
96 |
|
97 |
-
inputs =
|
98 |
output = [gr.Audio(label="Download processed music", type="filepath")]
|
99 |
|
100 |
btnClear.add(components=output)
|
|
|
89 |
reverb_check.change(re_v, inputs=[reverb_check], outputs=[re_col])
|
90 |
# =====================================================
|
91 |
|
|
|
92 |
with gr.Row():
|
93 |
+
btnClear = gr.ClearButton(components=[dimension_check, speed_check, reverb_check])
|
94 |
btnRun = gr.Button("Run", size="sm", variant="primary")
|
95 |
|
96 |
+
inputs = [input_audio, dimension_check, pan, jump, time, volx, speed_check, speed, reverb_check, room, damp, width, wet, dry]
|
97 |
output = [gr.Audio(label="Download processed music", type="filepath")]
|
98 |
|
99 |
btnClear.add(components=output)
|