Spaces:
Running
Running
mubashiralli
commited on
Commit
•
375fc9d
1
Parent(s):
4a13883
adding button for download/save
Browse files
app.py
CHANGED
@@ -122,4 +122,7 @@ if apply_stereo or reverse or change_speed or pitch_shift or add_reverb:
|
|
122 |
st_state.augmented_audio = scipy.signal.fftconvolve(st_state.augmented_audio, reverb_ir)
|
123 |
|
124 |
# Play the processed audio
|
125 |
-
st.audio(st_state.augmented_audio, format="audio/wav", sample_rate=sample_rate, start_time=0)
|
|
|
|
|
|
|
|
122 |
st_state.augmented_audio = scipy.signal.fftconvolve(st_state.augmented_audio, reverb_ir)
|
123 |
|
124 |
# Play the processed audio
|
125 |
+
st.audio(st_state.augmented_audio, format="audio/wav", sample_rate=sample_rate, start_time=0)
|
126 |
+
|
127 |
+
if st.button("Download/Save"):
|
128 |
+
st.markdown("[Download Processed Audio](https://songlabai.com/subcribe/)")
|