ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
**实现如下的代理方法,采集格式一定要是**TRTCVideoPixelFormat_32BGRA ! ``` -(void)didOutputVideoSampleBuffer:(CMSampleBufferRef)sampleBuffer { CVPixelBufferRefpixelBuffer = CMSampleBufferGetImageBuffer(sampleBuffer) ; NSTimeInterval startTime =  [[NSDate date] timeIntervalSince1970]; //渲染(必加关键代码)  OSType formatType = CVPixelBufferGetPixelFormatType(pixelBuffer);     [self.beautyManager processWithPixelBuffer:pixelBuffer formatType:formatType];     TRTCVideoFrame* videoFrame = [TRTCVideoFrame new]; videoFrame.bufferType= TRTCVideoBufferType_PixelBuffer; videoFrame.pixelFormat= TRTCVideoPixelFormat_32BGRA; videoFrame.pixelBuffer= CMSampleBufferGetImageBuffer(sampleBuffer); TRTCVideoRotation rotation = TRTCVideoRotation_0; [_trtc sendCustomVideoData:videoFrame]; } ```