Google Speech Recognition API Limitations

I am using google speech recognition api. I created a shell in Java (for example: http://pastebin.com/zJEhnJ74 ); everything works fine, but sometimes I get http 403 or http 500, so I think there are some restrictions on the day.

I know this is not an official API, but does anyone know the service limit (maximum requests per day, maximum length of audio file, etc.)?

+6
source share
1 answer

The maximum time limit for a single speech recognition session is about 60 seconds. This means that you can get Google to process the offer, but then you need to end this session and start a new one.

If you can use JavaScript, then you should use the SpeechRecognition API - take a look at the simple example I wrote in this tutorial

+4
source

Source: https://habr.com/ru/post/953292/


All Articles