HarmonyOS Camera kit 自定义相机问题?

每次开启录像都会session.stop,再session.start。这个过程预览流会中断,出现短暂的黑屏。

await this.capSession.stop(); 
this.capSession.beginConfig(); 
if (this.photoOutput) { 
  this.capSession.removeOutput(this.photoOutput); // 移除拍照流 
  this.photoOutput = undefined 
} 
if (this.videoOutput) { 
  this.capSession.removeOutput(this.videoOutput) // 移除录像流 
} 
await this.createRecordOutput() // 创建拍照流 
this.capSession.addOutput(this.videoOutput); 
await this.capSession.commitConfig(); 
await this.capSession.start(); 
await this.videoOutput?.start(); 
await this.avRecorder?.start();

如上面代码,每次的开启录像,都会先session.stop,重新配置videoOutput,最后再session.start。这个过程预览流也会被短暂的终止,导致出现短暂的黑屏,影响用户体验。有没有办法,删除和添加videoOutput的过程不会终止预览流的输出。

阅读 614
2 个回答
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题