HTML5 has a new Speech recognition API and caniuse.com suggestes, Safari iOS 7.1 supports this API. But, I have tried it and its not working on iOS (iPhone 5S) with Safari 7.1 or MAC OS x safari 7.1.
Is there any workaround to make it work on iOS and Android? Is this speech recognition API be used for sensitive data as it uses Google Services ().
I tried this:
<!DOCTYPE html>
<meta charset="utf-8">
<title>Web Speech API Demo</title>
<head>
<script>
function test(){
alert("Called test")
if ('speechSynthesis' in window) {
alert("Synthesis support. Make your web apps talk!");
}
if ('SpeechRecognition' in window) {
alert("Speech recognition support. Talk to your apps!");
}
else{
alert("No support");
}
if (document.createElement('input').webkitSpeech === undefined) {
alert("Nooooo")
// Not supported
} else {
// Supported!
}
}