0

My problem is that I need to implement speech recognition with continuous listening. Hence, the Speech Recognition API is not an option because continuous listening with it on a mobile device is is generally not supported as the microphone constantly turns on and off.

Also tried to work around this by initiating it with continuous:false and turning it back on as soon as it ends:

const recognition = new SpeechRecognition();
recognition.continuous = false;
recognition.onend= (event) => {recognition.start();}
recognition.start();

But it's no use.

Been wondering if it's possible to turn the microphone on a mobile keyboard on as soon as the keyboard opens.

Semion Vino
  • 121
  • 1
  • 9
  • We have not ideas which API you're referring to, nor which operating system you're using schick controls the (emulated) keyboard. Please **edit** the question to give all context necessary for us, who have no clue what you're working with, to be able to understand your problem. – Marcus Müller Dec 06 '22 at 08:42

0 Answers0