fcernafukuzaki commited on
Commit
72805bd
·
verified ·
1 Parent(s): f549bec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -48,7 +48,11 @@ def transcribe(audio_bytes):
48
  # Crea una solicitud de reconocimiento de audio
49
  #audio = speech_v1.RecognitionAudio(content=audio_bytes)
50
  #request = speech_v1.RecognizeSpeechRequest(config=config, audio=audio)
51
- audio = speech.RecognitionAudio(content=audio_bytes)
 
 
 
 
52
  # Sends the request to google to transcribe the audio
53
  response = client.recognize(request={"config": config, "audio": audio})
54
  transcript = []
 
48
  # Crea una solicitud de reconocimiento de audio
49
  #audio = speech_v1.RecognitionAudio(content=audio_bytes)
50
  #request = speech_v1.RecognizeSpeechRequest(config=config, audio=audio)
51
+ print(type(audio_bytes))
52
+ sr, y = audio_bytes
53
+ y = y.astype(np.float32)
54
+ y /= np.max(np.abs(y))
55
+ audio = speech.RecognitionAudio(content=y)
56
  # Sends the request to google to transcribe the audio
57
  response = client.recognize(request={"config": config, "audio": audio})
58
  transcript = []