I am trying to figure out how I can get the pitch, rate and volume of my speech.
I am using the below code for speech to text:
function startDictation() {
if (window.hasOwnProperty('webkitSpeechRecognition')) {
var recognition = new webkitSpeechRecognition();
recognition.continuous = false;
recognition.interimResults = false;
recognition.lang = "pt-BR";
recognition.start();
recognition.onresult = function(e) {
document.getElementById('transcript').value
= e.results[0][0].transcript;
recognition.stop();
//document.getElementById('labnol').submit();
};
recognition.onerror = function(e) {
recognition.stop();
}
}
}
Does someone know how I can get these informations of my speech? Or some alternative solution?
I really appreciate your help and atention. Thank you very much.
Helena