Spaces:
Runtime error
Runtime error
Update app/app.py
Browse files- app/app.py +2 -1
app/app.py
CHANGED
@@ -132,7 +132,8 @@ st.audio(audio_bytes, format='audio/ogg')
|
|
132 |
|
133 |
# Run the audio through this pedalboard!
|
134 |
audio, sample_rate = sf.read('./example.wav')
|
135 |
-
board = Pedalboard(get_transforms(), sample_rate=sample_rate)
|
|
|
136 |
effected = board(audio)
|
137 |
|
138 |
# Write the audio back as a wav file:
|
|
|
132 |
|
133 |
# Run the audio through this pedalboard!
|
134 |
audio, sample_rate = sf.read('./example.wav')
|
135 |
+
# board = Pedalboard(get_transforms(), sample_rate=sample_rate)
|
136 |
+
board = Pedalboard(get_transforms())
|
137 |
effected = board(audio)
|
138 |
|
139 |
# Write the audio back as a wav file:
|