下面的代碼:AVAssetExportSession給我上輸出視頻的右側和底部的綠色邊框
AVAssetExportSession *exporter = [[AVAssetExportSession alloc] initWithAsset:mixComposition presetName:AVAssetExportPresetHighestQuality];
exporter.outputURL = outputUrl;
exporter.outputFileType = AVFileTypeQuickTimeMovie;
exporter.videoComposition = mainComposition;
exporter.shouldOptimizeForNetworkUse = YES;
[exporter exportAsynchronouslyWithCompletionHandler:^{
//completion
}];
我已經嘗試了不同的質量設置。無論我嘗試渲染什麼視頻,我都會在視頻的右側和底部獲得一個1-2像素的邊框。有什麼可能導致這種情況,我該如何解決?
編輯:我沒有在任何地方使用任何種類的綠色,所以這必須以某種方式來自框架。
謝謝你的喜好!這對我來說很簡單(簡單而簡單)。 – smartbot