If the Google Speech API transcribes audio at near real time, and my latency to the actual server is only 50ms, why do I receive my final streaming transcription result after 1.6s? Shouldn’t I receive it in only a couple hundred milliseconds?
Asked
Active
Viewed 96 times
0
-
Well, that is pretty generic. Can you be more specific? How are you calling the service, is your account free? – Guilherme Uzeda Oct 16 '18 at 11:36
-
Possible duplicate of [how to speed up google cloud speech](https://stackoverflow.com/questions/50364955/how-to-speed-up-google-cloud-speech) – Yurci Oct 16 '18 at 12:07
-
You can refer to this [answer](https://stackoverflow.com/a/51359674/9908267). Apart from the transcription speed itself, authentication takes time every time a call is made to the API. – Yurci Oct 16 '18 at 12:09
-
Using the c# client library and yes the account is free – Harry Stuart Oct 16 '18 at 12:09
-
Is it possible to avoid authenticating for each request? – Harry Stuart Oct 16 '18 at 12:10
-
You can use [API Keys](https://cloud.google.com/docs/authentication/api-keys) for authentication. Bear in mind with using the API Keys you lose the ability to track from whom the requests are being made and it might be easier for others to discover the key. – Yurci Oct 16 '18 at 12:19
1 Answers
0
You can use API Keys for authentication. Bear in mind with using the API Keys you lose the ability to track from whom the requests are being made and it might be easier for others to discover the key.
Also, you might want to check this other question: how to speed up google cloud speech

Temu
- 859
- 4
- 11