Spaces:
Running
Running
UPDATE
Browse files
app.py
CHANGED
@@ -20,8 +20,8 @@ def process_audio(input_file, effect_8d, effect_slowed, effect_reverb,
|
|
20 |
sound = Fusion.effectReverb(sound, room_size, damping, width, wet_level, dry_level, "temp"+output_file+".wav")
|
21 |
|
22 |
# Save the processed sound and return the output file
|
23 |
-
Fusion.saveSound(sound, output_file, effect_reverb, "temp"+output_file+".wav")
|
24 |
-
return
|
25 |
|
26 |
except Fusion.InvalidMusicFileError as e:
|
27 |
return str(e)
|
|
|
20 |
sound = Fusion.effectReverb(sound, room_size, damping, width, wet_level, dry_level, "temp"+output_file+".wav")
|
21 |
|
22 |
# Save the processed sound and return the output file
|
23 |
+
output = Fusion.saveSound(sound, output_file, effect_reverb, "temp"+output_file+".wav")
|
24 |
+
return output
|
25 |
|
26 |
except Fusion.InvalidMusicFileError as e:
|
27 |
return str(e)
|