zarox commited on
Commit
3eb3856
·
1 Parent(s): 19c8b69
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,7 +29,7 @@ def process_audio(input_file,
29
  iface = gr.Interface(
30
  fn=process_audio,
31
  inputs=[
32
- gr.Audio(label="Upload your music file"),
33
  gr.Checkbox(label="Apply 8D effect"),
34
  gr.Slider(label="8D - Pan Boundary", minimum=0, maximum=100, value=50),
35
  gr.Slider(label="8D - Jump Percentage", minimum=1, maximum=100, value=5),
@@ -44,7 +44,7 @@ iface = gr.Interface(
44
  gr.Slider(label="Reverb - Wet Level", minimum=0, maximum=1, step=0.1, value=0.3),
45
  gr.Slider(label="Reverb - Dry Level", minimum=0, maximum=1, step=0.1, value=0.8),
46
  ],
47
- outputs=gr.Audio(label="Download processed music"),
48
  title="Audio Fusion"
49
  )
50
 
 
29
  iface = gr.Interface(
30
  fn=process_audio,
31
  inputs=[
32
+ gr.Audio(label="Upload your music file", type="filepath"),
33
  gr.Checkbox(label="Apply 8D effect"),
34
  gr.Slider(label="8D - Pan Boundary", minimum=0, maximum=100, value=50),
35
  gr.Slider(label="8D - Jump Percentage", minimum=1, maximum=100, value=5),
 
44
  gr.Slider(label="Reverb - Wet Level", minimum=0, maximum=1, step=0.1, value=0.3),
45
  gr.Slider(label="Reverb - Dry Level", minimum=0, maximum=1, step=0.1, value=0.8),
46
  ],
47
+ outputs=gr.Audio(label="Download processed music", type="filepath"),
48
  title="Audio Fusion"
49
  )
50