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