Spaces:
Running
Running
UPDATE
Browse files
app.py
CHANGED
@@ -69,6 +69,7 @@ with gr.Blocks(title="Audio Fusion") as iface:
|
|
69 |
# 8d Effect and its arguments
|
70 |
with gr.Tab("8d Effect"):
|
71 |
d_check = gr.Checkbox(label="Apply 8D effect")
|
|
|
72 |
pan = gr.Slider(label="8D - Pan Boundary", minimum=0, maximum=100, value=100)
|
73 |
jump = gr.Slider(label="8D - Jump Percentage", minimum=1, maximum=100, value=5)
|
74 |
time = gr.Slider(label="8D - Time L to R (s)", minimum=1, maximum=30, value=10)
|
@@ -77,6 +78,7 @@ with gr.Blocks(title="Audio Fusion") as iface:
|
|
77 |
# SLowed Effect and its arguments
|
78 |
with gr.Tab("Slowed Effect"):
|
79 |
speed_check = gr.Checkbox(label="Apply slowed effect"),
|
|
|
80 |
speed = gr.Slider(label="Slowed - Speed Multiplier", minimum=0.1, maximum=4, step=0.01, value=0.92),
|
81 |
|
82 |
# Reverb Effect and its arguments
|
|
|
69 |
# 8d Effect and its arguments
|
70 |
with gr.Tab("8d Effect"):
|
71 |
d_check = gr.Checkbox(label="Apply 8D effect")
|
72 |
+
with gr.Column():
|
73 |
pan = gr.Slider(label="8D - Pan Boundary", minimum=0, maximum=100, value=100)
|
74 |
jump = gr.Slider(label="8D - Jump Percentage", minimum=1, maximum=100, value=5)
|
75 |
time = gr.Slider(label="8D - Time L to R (s)", minimum=1, maximum=30, value=10)
|
|
|
78 |
# SLowed Effect and its arguments
|
79 |
with gr.Tab("Slowed Effect"):
|
80 |
speed_check = gr.Checkbox(label="Apply slowed effect"),
|
81 |
+
with gr.Column():
|
82 |
speed = gr.Slider(label="Slowed - Speed Multiplier", minimum=0.1, maximum=4, step=0.01, value=0.92),
|
83 |
|
84 |
# Reverb Effect and its arguments
|