Last active
April 7, 2018 01:33
-
-
Save 9jaswag/b3ead2bee742884f4bd4ef688f53008b to your computer and use it in GitHub Desktop.
speech recogniton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.SpeechRecognition = window.webkitSpeechRecognition || window.SpeechRecognition; | |
const synth = window.speechSynthesis; | |
const recognition = new SpeechRecognition(); | |
const icon = document.querySelector('i.fa.fa-microphone') | |
let paragraph = document.createElement('p'); | |
let container = document.querySelector('.text-box'); | |
container.appendChild(paragraph); | |
const sound = document.querySelector('.sound'); | |
icon.addEventListener('click', () => { | |
sound.play(); | |
dictate(); | |
}); | |
const dictate = () => { | |
recognition.start(); | |
recognition.onresult = (event) => { | |
const speechToText = event.results[0][0].transcript; | |
paragraph.textContent = speechToText; | |
if (event.results[0].isFinal) { | |
if (speechToText.includes('what is the time')) { | |
speak(getTime); | |
}; | |
if (speechToText.includes('what is today\'s date')) { | |
speak(getDate); | |
}; | |
if (speechToText.includes('what is the weather in')) { | |
getTheWeather(speechToText); | |
}; | |
} | |
} | |
} | |
const speak = (action) => { | |
utterThis = new SpeechSynthesisUtterance(action()); | |
synth.speak(utterThis); | |
}; | |
const getTime = () => { | |
const time = new Date(Date.now()); | |
return `the time is ${time.toLocaleString('en-US', { hour: 'numeric', minute: 'numeric', hour12: true })}` | |
}; | |
const getDate = () => { | |
const time = new Date(Date.now()) | |
return `today is ${time.toLocaleDateString()}`; | |
}; | |
const getTheWeather = (speech) => { | |
fetch(`http://api.openweathermap.org/data/2.5/weather?q=${speech.split(' ')[5]}&appid=58b6f7c78582bffab3936dac99c31b25&units=metric`) | |
.then(function(response){ | |
return response.json(); | |
}) | |
.then(function(weather){ | |
if (weather.cod === '404') { | |
utterThis = new SpeechSynthesisUtterance(`I cannot find the weather for ${speech.split(' ')[5]}`); | |
synth.speak(utterThis); | |
return; | |
} | |
utterThis = new SpeechSynthesisUtterance(`the weather condition in ${weather.name} is mostly full of ${weather.weather[0].description} at a temperature of ${weather.main.temp} degrees Celcius`); | |
synth.speak(utterThis); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment