Home > Software design >  speech recognition without google installed in android device
speech recognition without google installed in android device

Time:11-19

I'm making an app for an android device that doesn't include Google apps(not even google play services). But as I have seen everywhere there's not a single speech recognition better than google because either they are offline (so the app size increases for good accuracy) or they don't have better open-source services. So I want to access google's speech recognition without having google apps installed in the watch. Can google services be accessible online without installing? Any help is appreciated!.

CodePudding user response:

You can use google speech recognition API. (https://cloud.google.com/speech-to-text/docs/basics) It supports Restful API or gRPC API. API is not free of charge. But I think it will give the performance you looking for.

Hyo

  • Related