ggirishg commited on
Commit
e19cf9d
·
verified ·
1 Parent(s): fed0859

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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