播放语音识别音频 - Ionic 2

时间:2017-11-28 10:49:02

标签: ionic2 angular-ui-router

我使用speechRecognition构建了一个应用程序。

    startListening() {
      let options = {
        language: 'en-US'
      }
      this.speechRecognition.startListening().subscribe(matches => {
        this.matches = matches;
        this.cd.detectChanges();
      });
      this.isRecording = true;
    }

我想知道是否有可能再听我录制的音频?

0 个答案:

没有答案