我有 HTTP 视频流,所以我想逐帧接收它。我见过这个 AVCaptureSessionDelegate 方法,但这仅适用于相机视频:
- (void)captureOutput:(AVCaptureOutput *)captureOutput
didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer
fromConnection:(AVCaptureConnection *)connection
{
}
我也读过 iFrameExtractor 但这是视频文件的解决方案,而不是流。有没有关于这个要求的解决方案?