Trimming video with Monotouch fails with “The operation could not be completed”

主宰稳场 提交于 2019-12-02 10:13:23

Try this code below. I modified exportSession.OutputUrl and how you initialize your CMTimeRange. Are you trimming it down to a 4 second clip?

var compatiblePresets= AVAssetExportSession.ExportPresetsCompatibleWithAsset(videoAsset).ToList();
var preset="";

if(compatiblePresets.Contains("AVAssetExportPresetLowQuality"))
{
    preset="AVAssetExportPresetLowQuality";
}
else
{
    preset=compatiblePresets.FirstOrDefault();
}

using (var exportSession = new AVAssetExportSession(videoAsset, preset))
{
    int SystemVersion = Convert.ToInt16(UIDevice.CurrentDevice.SystemVersion.Split('.')[0]);
    string filename;
    if (SystemVersion >= 8)
    {
        var documents = NSFileManager.DefaultManager.GetUrls(NSSearchPathDirectory.DocumentDirectory, NSSearchPathDomain.User)[0].Path;
        filename = Path.Combine(documents, "trimmed.mov");
    }
    else
    {
        var documents = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); // iOS 7 and earlier
        filename = Path.Combine(documents, "trimmed.mov");
    }

    exportSession.OutputUrl = NSUrl.FromFilename(filename);
    exportSession.OutputFileType = AVFileType.QuickTimeMovie;

    var range = new CMTimeRange();
    range.Start = CMTime.FromSeconds (1, videoAsset.Duration.TimeScale);
    range.Duration = CMTime.FromSeconds (5, videoAsset.Duration.TimeScale);
    exportSession.TimeRange = range;
}

ExportTrimmedVideo( exportSession);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!