且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

无法在iOS Objective-C中将.avi转换为.mp4

更新时间:2022-12-10 11:56:42

尝试打印错误消息:

switch ([exportSession status]) {
        case AVAssetExportSessionStatusFailed:
            NSLog(@"Export failed: %@", [[exportSession error] localizedDescription]);
            break;
        case AVAssetExportSessionStatusCancelled:
            NSLog(@"Export canceled");
            break;
            case AVAssetExportSessionStatusCompleted:
            NSLog(@"Successfully");
            break;
        default:
            break;
        }

    }];
}