I have this service in angular to translate speech into text through webspeech
import { Injectable } from '@angular/core';
declare var webkitSpeechRecognition: any;
@Injectable({
providedIn: 'root'
})
export class VoiceRecognitionService {
recognition = new webkitSpeechRecognition();
isListening = false;
public text = '';
public tempWords : any;
public transcript_arr = [];
public confidence_arr = [];
constructor() { }
getTranscriptValue()
{
return this.transcript_arr;
}
getConfidenceValue()
{
return this.confidence_arr;
}
init() {
this.recognition.continuous = true;
this.recognition.interimResults = false;
this.recognition.maxAlternatives = 1;
this.recognition.lang = 'en-US';
this.recognition.addEventListener('result', (e:any) => {
let last = e.results.length - 1;
let temp_trans = e.results[last][0].transcript;
let confidence = e.results[last][0].confidence;
this.confidence_arr.push(confidence);
this.transcript_arr.push(temp_trans);
const transcript = Array.from(e.results)
.map((result:any) => result[0])
.map((result) => result.transcript)
.join('');
this.tempWords = transcript;
});
}
start() {
if(this.isListening==false)
{
this.isListening = true;
this.recognition.start();
}
this.recognition.addEventListener('end', (condition:any) => {
if (!this.isListening) {
this.recognition.stop();
} else {
this.wordConcat()
this.recognition.start();
}
});
}
stop() {
this.isListening = false;
this.wordConcat();
this.recognition.stop();
}
reinit()
{
this.transcript_arr=[];
this.confidence_arr=[];
this.tempWords='';
this.text='';
}
wordConcat() {
this.text = this.text + ' ' + this.tempWords + '.';
this.tempWords = '';
}
}
I call this service function from .ts
file like i call this.service.init() on start and then this.service.start()
after that i call this.service.stop()
and this.service.reinit()
but i still get old values with the new values in the result event listener
in temp_trans
variable i don't want to old values i want new values if i stop it through this.service.stop()
.
Any solution is highly appreciated. Thanks