企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
添加FUCamera文件来采集视频,遵循FUCameraDelegate,AgoraVideoSourceProtocol。(Add FUCamera file to collect video. Follow FUCameraDelegate and AgoraVideoSourceProtocol) ``` - (void)didOutputVideoSampleBuffer:(CMSampleBufferRef)sampleBuffer { CVPixelBufferRef pixelBuffer = (CVPixelBufferRef)CMSampleBufferGetImageBuffer(sampleBuffer) ; CVPixelBufferLockBaseAddress(pixelBuffer, 0); [self.beautyManager processAgoraWithPixelBuffer:pixelBuffer]; [self.consumer consumePixelBuffer:pixelBuffer withTimestamp:CMSampleBufferGetPresentationTimeStamp(sampleBuffer) rotation:AgoraVideoRotationNone]; CVPixelBufferUnlockBaseAddress(pixelBuffer, 0); } ```