Right now I am using RecognizerIntent and RecognitionListener but the device still waits till the end of speech to change speech to text. I want it so that the device types the word as soon as the speaker says it for a seamless experience.
Is there a way to do this?
I have to override different methods implemented under RecognitionListener right now like onBeginningOfSpeech
and onEndOfSpeech
only after which the onResults is called but I want to transcribe the speech word by word.