Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -271,7 +271,7 @@ else: # Option is "Record audio"
|
|
271 |
const audioUrl = URL.createObjectURL(audioBlob);
|
272 |
const a = document.createElement('a');
|
273 |
a.href = audioUrl;
|
274 |
-
a.download = 'recorded_audio.wav';
|
275 |
document.body.appendChild(a);
|
276 |
a.click();
|
277 |
|
|
|
271 |
const audioUrl = URL.createObjectURL(audioBlob);
|
272 |
const a = document.createElement('a');
|
273 |
a.href = audioUrl;
|
274 |
+
a.download = './recorded_audio.wav';
|
275 |
document.body.appendChild(a);
|
276 |
a.click();
|
277 |
|