Question

I am using AVCaptureVideoDataOutput to capture camera video. I would like to crop CMSampleBufferRef to make the final video square. But I can't find solution to do that. Do you have any ideas?

Please do not offer AVAssetExportSession.

Thanks.

Was it helpful?

Solution

Tentatively, you could try setting a dictionary on the something like the following with your width and height:

NSDictionary* videoSettingsDictionary = @{
    (id)kCVPixelBufferWidthKey : @(width),
    (id)kCVPixelBufferHeightKey : @(height),
    AVVideoScalingModeKey : AVVideoScalingModeFit
};
[yourAVCaptureVideoDataOutput setVideoSettings:videoSettingsDictionary];

Supposedly, AVVideoScalingModeFit forces the AVCaptureVideoDataOutput to Crop to remove edge processing region; preserve aspect ratio of cropped source by reducing specified width or height if necessary. (link to AVF docs)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top