HTML5有一个新的语音识别API和caniuse.com建议,Safari iOS 7.1支持这个API.但是,我已经尝试过它并且它不适用于使用Safari 7.1或MAC OS x safari 7.1的iOS(iPhone 5S).
是否有任何解决方法使其适用于iOS和Android?此语音识别API是否用于敏感数据,因为它使用Google Services().
我试过这个:
<!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!
}
}
最佳答案 是的,我对此也非常沮丧.这是我发现不支持safari / IE的地方..
https://developer.mozilla.org/en-US/docs/Web/API/Web_Speech_API