zarox commited on
Commit
d7a7779
·
1 Parent(s): 7d72da4
Files changed (1) hide show
  1. app.py +2 -3
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=components)
95
  btnRun = gr.Button("Run", size="sm", variant="primary")
96
 
97
- inputs = components
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)