-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
37 lines (26 loc) · 1.24 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
window.SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition ;
const recognition = new SpeechRecognition();
recognition.interimResults =true;
let p = document.createElement("p");
const words = document.querySelector(".words")
words.appendChild(p)
//
// console.log(recognition);
// console.log(words);
recognition.addEventListener("result",e => {
console.log(e); //it is giving a transcript where audio subtitle will be present
const transcript = [...e.results ] // converting this to an array as we need to use map to go through each
.map(result => result[0] ) //mapping over the array to get the "transcript"
.map(result =>result.transcript ).join("") // this will show the speech in console.
p.textContent = transcript;
if(e.results[0].isFinal){
p = document.createElement("p"); //this will create p automatically as the content will increase
words.appendChild(p)
}
if(transcript.includes("hello siri how are you") ){
p.textContent = "hey tanishk ! I am fine good to see you back "
}
// console.log(transcript);
} )
recognition.addEventListener("end",recognition.start )
recognition.start();