1. 程式人生 > >ionic cordova 語音識別整合

ionic cordova 語音識別整合

使用cordova-plugin-IFlyspeech外掛


新增外掛 : cordova plugin add  https ://github.com/Edc-zhang/cordova-plugin-IFlyspeech
完事 去科大訊飛官網申請appid
在外掛資料夾的xml檔案,把appid替換成自己的.


這檔案好像不能替,本想拿科大官網下載的sdk包,替換下,結果總會報錯,如下:

(打包時報錯)


在專案內,定義方法,
xunfeiListenSpeaking.startListen(function(str) {
  // this is what the device hear and understand
  alert(str)

},function (err) {
  alert(err)
},true,true);

打包 初試成功