Frage

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.

War es hilfreich?

Lösung

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)

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top