zarox commited on
Commit
8b567a5
·
1 Parent(s): f2728c5
Files changed (1) hide show
  1. app.py +2 -2
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 output_file
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)