每次开启录像都会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的过程不会终止预览流的输出。
可以参考一下系统相机的实现方式:源码链接:https://gitee.com/openharmony/applications_camera。参考:common\src\main\ets\default\camera\CameraService.ts createSession StartRecording stopRecording。