Listen/Record speechRecognition audio

Asked

Viewed 78 times

1

I built a simple application using speechRecognition

startListening() {
  let options = {
    language: 'en-US'
  }
  this.speechRecognition.startListening().subscribe(matches => {
    this.matches = matches;
    this.cd.detectChanges();
  });
  this.isRecording = true;
}

I wonder if I can use a recorded audio to perform speechRecognition or if there is a possibility to save the audio that was used.

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.