Add-Vishnu commited on
Commit
e566c6c
·
1 Parent(s): bf223ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ def resample_to_16k(audio, orig_sr):
13
  y_resampled = librosa.resample(y=audio, orig_sr=orig_sr, target_sr = 16000)
14
  return y_resampled
15
 
16
- def transcribe(audio,):
17
  sr,y = audio
18
  y = y.astype(np.float32)
19
  y /= np.max(np.abs(y))
 
13
  y_resampled = librosa.resample(y=audio, orig_sr=orig_sr, target_sr = 16000)
14
  return y_resampled
15
 
16
+ def transcribe(audio):
17
  sr,y = audio
18
  y = y.astype(np.float32)
19
  y /= np.max(np.abs(y))