HXPhotoPicker icon indicating copy to clipboard operation
HXPhotoPicker copied to clipboard

导出视频得到VideoURL不知道怎么上传

Open 2952883085 opened this issue 3 years ago • 0 comments

你好大神,请教下我用下面方法导出视频得到videoURL沙盒临时路径,是不能直接上传到服务器吧,需要转成字符串在上传到服务器吗?我转成字符串mp4文件就变成了mov默认格式,还是求请教,谢谢了: //导出视频 [videoM exportVideoWithPresetName:AVAssetExportPresetMediumQuality startRequestICloud:nil iCloudProgressHandler:nil exportProgressHandler:^(float progress, HXPhotoModel * _Nullable model) { // 导出视频时的进度,在iCloud下载完成之后 } success:^(NSURL * _Nullable videoURL, HXPhotoModel * _Nullable model) { // 导出完成, videoURL PPLog(@"====%@",videoURL); NSString *filePath = [[NSString alloc]initWithContentsOfURL:videoURL encoding:NSUTF8StringEncoding error:nil]; PPLog(@"===filePath:%@",filePath); [self uploadVideoFile:filePath];

    } failed:nil];


} cancel:^(UIViewController *viewController, HXPhotoManager *manager) {
    PPLog(@"取消按钮被点击了");
}];

2952883085 avatar Aug 28 '20 08:08 2952883085