HarmonyOS 使用audio.createAudioCapturer开发音频录制功能,调用audioCapturer.stop的时候报错 error:{ code: 600301, message: "system error" }

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

请参考demo:

// 停止采集
function stop() {
  if (audioCapturer !== undefined) {
    // 只有采集器状态为STATE_RUNNING或STATE_PAUSED的时候才可以停止
    if ((audioCapturer as audio.AudioCapturer).state.valueOf() !== audio.AudioState.STATE_RUNNING && (audioCapturer as audio.AudioCapturer).state.valueOf() !== audio.AudioState.STATE_PAUSED) {
      console.info('Capturer is not running or paused');
      return;
    }
    //停止采集
    (audioCapturer as audio.AudioCapturer).stop((err: BusinessError) => {
      if (err) {
        console.error('Capturer stop failed.');
      } else {
        console.info('Capturer stop success.');
      }
    });
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
使用AudioCapturer开发音频录制功能
1310浏览 • 1回复 待解决
使用AudioRenderer开发音频播放功能
1141浏览 • 1回复 待解决
冷启动报错Error message
2140浏览 • 1回复 待解决
AVplayer开发音频播放功能
1251浏览 • 1回复 待解决
app启动crash报错Error message:MainPage:
1816浏览 • 1回复 待解决
HarmonyOS native audio 录制编译报错
246浏览 • 1回复 待解决