fcernafukuzaki commited on
Commit
f800a9b
·
verified ·
1 Parent(s): 3ab4a68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -51,9 +51,10 @@ def transcribe_2(audio_bytes):
51
  #request = speech_v1.RecognizeSpeechRequest(config=config, audio=audio)
52
  print(type(audio_bytes))
53
  sr, y = audio_bytes
 
54
  y = y.astype(np.float32)
55
  y /= np.max(np.abs(y))
56
- audio = speech.RecognitionAudio(content=y)
57
  # Sends the request to google to transcribe the audio
58
  response = client.recognize(request={"config": config, "audio": audio})
59
  transcript = []
 
51
  #request = speech_v1.RecognizeSpeechRequest(config=config, audio=audio)
52
  print(type(audio_bytes))
53
  sr, y = audio_bytes
54
+ print(type(y))
55
  y = y.astype(np.float32)
56
  y /= np.max(np.abs(y))
57
+ audio = speech.RecognitionAudio(content=audio_bytes)
58
  # Sends the request to google to transcribe the audio
59
  response = client.recognize(request={"config": config, "audio": audio})
60
  transcript = []