javascript - Ionic Cordova macdonst SpeechRecognition 无法启动?

标签 javascript angularjs cordova ionic-framework speech-recognition

TL; DR: 它不起作用的原因是因为我在 Android 6.0 上运行该应用程序。在 6.0 中,您必须手动授予应用程序访问麦克风的权限。

原帖: 我想创建一个使用 speechRecognition 的 ionic 应用程序 https://github.com/macdonst/SpeechRecognitionPlugin

但不知为什么它不起作用?

首先我创建了一个 ionic 项目:

ionic start cordova-speech blank

我进入那个新文件夹并下载了插件:

cordova plugin add https://github.com/macdonst/SpeechRecognitionPlugin

然后我添加了android平台。

我的 HTML 文件:

<body ng-app="starter">
    <ion-pane ng-controller="AppCtrl">        
      <ion-content class="padding">     
        <button class="button button-full button-positive" ng-click="record()">
          Record
        </button>
        <div class="card">
          <div class="item item-text-wrap">
            {{recognizedText}}
          </div>
        </div>
      </ion-content>
    </ion-pane>
</body>

我的 app.js 文件:

angular.module('starter', ['ionic'])

.controller('AppCtrl', function($scope) {
  $scope.recognizedText = '';

  $scope.record = function() {
    alert("step1");

    var recognition = new SpeechRecognition();
    alert("step2");

    recognition.onresult = function(event) {
      alert("step3");

        if (event.results.length > 0) {
            $scope.recognizedText = event.results[0][0].transcript;
            $scope.$apply();
        }
    };
    recognition.start();
    alert("step4");

  };
});

我在代码中添加了一些警报以便进行调试(无法在浏览器中调试该功能)。当我按下录制按钮时,它只会弹出第一个和第二个警报。问题似乎与结果有关。我错过了什么?

我使用的是 Android 6.0

我做了一个 adb logcat。这是结果:

02-14 03:39:28.109   202   815 D audio_hw_primary: select_devices: out_snd_device(2: speaker) in_snd_device(0: none)
02-14 03:39:28.109   202   815 D msm8974_platform: platform_send_audio_calibration: sending audio calibration for snd_device(2) acdb_id(15)
02-14 03:39:28.109   202   815 D audio_hw_primary: enable_snd_device: snd_device(2: speaker)
02-14 03:39:28.114   202   815 D audio_hw_primary: enable_audio_route: apply and update mixer path: low-latency-playback
02-14 03:39:28.124 26122 26210 D OpenGLRenderer: endAllStagingAnimators on 0x985f7a00 (RippleDrawable) with handle 0x9cace320
02-14 03:39:28.173   779  1396 W InputMethodManagerService: Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@eaa7e51 attribute=null, token = android.os.BinderProxy@f80d5f9
02-14 03:39:28.307   189   189 W SurfaceFlinger: couldn't log to binary event log: overflow.
02-14 03:39:29.552   202   815 D audio_hw_primary: out_set_parameters: enter: usecase(1: low-latency-playback) kvpairs: routing=2
02-14 03:39:29.560 26122 26122 I chromium: [INFO:CONSOLE(34)] "initialized", source: file:///android_asset/www/plugins/org.apache.cordova.speech.speechrecognition/www/SpeechRecognition.js (34)
02-14 03:39:29.562   779  1389 W InputMethodManagerService: Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@7dff324 attribute=null, token = android.os.BinderProxy@f80d5f9
02-14 03:39:29.569 30081 30096 E RecognitionService: call for recognition service without RECORD_AUDIO permissions
02-14 03:39:29.569 26122 26122 D SpeechRecognition: error speech
02-14 03:39:29.570 26122 26122 W CordovaPlugin: Attempted to send a second callback for ID: SpeechRecognition494458598
02-14 03:39:29.570 26122 26122 W CordovaPlugin: Result was: {"type":"end"}
02-14 03:39:29.570 26122 26122 D cr_Ime  : [ImeAdapter.java:213] updateKeyboardVisibility: type [0], flags [0], show [true]
02-14 03:39:29.570 26122 26122 D cr_Ime  : [AdapterInputConnection.java:178] updateState [] [0 0] [-1 -1] [true]
02-14 03:39:29.586   202   815 D AudioFlinger: mixer(0xb4180000) throttle end: throttle time(7)
02-14 03:39:29.747   189   189 W SurfaceFlinger: couldn't log to binary event log: overflow.
02-14 03:39:30.796   910 31147 D NotificationMonitor: onNotificationPosted :StatusBarNotification(pkg=com.qihoo.security user=UserHandle{0} id=277 tag=null score=20 key=0|com.qihoo.security|277|null|10720: Notification(pri=2 contentView=com.qihoo.security/0x7f0300d4 vibrate=null sound=null tick defaults=0x0 flags=0x2 color=0x00000000 sortKey=sort_key_00 vis=PRIVATE))
02-14 03:39:30.903   910 31147 D NotificationMonitor: return, onNotificationPosted OWN_PKG_NAME
02-14 03:39:32.721   202   815 D audio_hw_primary: disable_audio_route: reset and update mixer path: low-latency-playback
02-14 03:39:32.721   202   815 D audio_hw_primary: disable_snd_device: snd_device(2: speaker)

更新: 我安装了

cordova plugin add cordova-plugin-chrome-apps-audiocapture --save
ordova plugin add org.apache.cordova.media

有人说我应该删除

<uses-permission android:name="android.permission.RECORD_AUDIO" />

来 self 的 speechrecognition 和 cordova 媒体插件,但它也无济于事。它现在执行第 4 个警报但跳过警报 3,这意味着 onresult 函数仍然存在问题。

最佳答案

日志中的这一行:

02-14 03:39:29.569 30081 30096 E RecognitionService: call for recognition service without RECORD_AUDIO permissions

告诉您需要设置权限才能在您的应用程序中录制音频。您可以添加插件 org.apache.cordova.media

cordova plugin add org.apache.cordova.media 

描述here .

关于javascript - Ionic Cordova macdonst SpeechRecognition 无法启动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35387610/

相关文章:

javascript - 背景大小是 innerhtml 大小

javascript - 如何在没有命名空间的情况下从 JavaScript 调用 Rust 函数?

javascript - 创建闪光警报的指令

javascript - 如何避免在下一个输入字段中显示所选选项?

sqlite - Phonegap 离线数据库(跨所有平台)

android - Cordova Android 版本 :app:processDebugResources failed

facebook - 无法使用 facebook connect 插件在 VS2015 中构建 Cordova 项目

javascript - 如何在 C 编程中制作 typescript 模拟指针?

javascript - 为什么箭头函数表现得很奇怪?

javascript - 在 Angular JS 中如果条件匹配则添加类