我正在使用AVCaptureVideoDataOutput
用于多重连接帧,AVCaptureMovieFileOutput
用于视频录制。但是不能同时工作。
当我添加MovieFileOutput
if ([self.CaptureSession canAddOutput:MovieFileOutput])
[self.CaptureSession addOutput:MovieFileOutput];
然后没有得到AVCaptureVideoDataOutput和AVCaptureVideoDataOutput add
AVCaptureMultipeerVideoDataOutput *multipeerVideoOutput = [[AVCaptureMultipeerVideoDataOutput alloc] initWithDisplayName:[[UIDevice currentDevice] name]];
multipeerVideoOutput.delegate = self;
[self.CaptureSession addOutput:multipeerVideoOutput];
未获得MovieFileOutput。请帮帮我。
感谢。