Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
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 = []
|