Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -208,20 +208,6 @@ effect_options = [
|
|
208 |
"Normalize"
|
209 |
]
|
210 |
|
211 |
-
interface = gr.Interface(
|
212 |
-
fn=batch_process_audio,
|
213 |
-
inputs=[
|
214 |
-
gr.File(label="Upload Multiple Audio Files", file_count="multiple"),
|
215 |
-
gr.CheckboxGroup(choices=effect_options, label="Apply Effects in Order"),
|
216 |
-
gr.Checkbox(label="Isolate Vocals After Effects"),
|
217 |
-
gr.Dropdown(choices=preset_names, label="Select Preset", value=preset_names[0] if preset_names else None),
|
218 |
-
gr.Dropdown(choices=["MP3", "WAV"], label="Export Format", value="MP3")
|
219 |
-
],
|
220 |
-
outputs=gr.File(label="Download ZIP of All Processed Files"),
|
221 |
-
title="AI Audio Studio - Batch Edition",
|
222 |
-
description="Upload multiple files, apply effects in bulk, and download all results in a single ZIP.",
|
223 |
-
allow_flagging="never"
|
224 |
-
)
|
225 |
interface = gr.Interface(
|
226 |
fn=batch_process_audio,
|
227 |
inputs=[
|
|
|
208 |
"Normalize"
|
209 |
]
|
210 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
interface = gr.Interface(
|
212 |
fn=batch_process_audio,
|
213 |
inputs=[
|