Then, I needed to change the output of the facial recognition API from a written into an audio channel, I modified the JavaScript with a speech synthesis
var utter= new SpeechSynthesisUtterance(("cette personne est") + data.id);
utter.voice = window.speechSynthesis.getVoices()[0];
window.speechSynthesis.speak(utter);
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.