4

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 服务 ()。

我试过这个:

 <!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!
        }
    }

4

1 回答 1

2

是的,我也对此感到很沮丧。这是我发现不支持 safari/IE 的地方。

https://developer.mozilla.org/en-US/docs/Web/API/Web_Speech_API

于 2015-11-23T16:18:23.353 回答