我最近遇到了类似的问题并以这种方式解决了。
使用两种方法创建 PHAsset 类别
PHAsset+Picking.h
#import <Photos/Photos.h>
@interface PHAsset (Picking)
+ (PHAsset *)retrievePHAssetWithLocalIdentifier:(NSString *)identifier;
+ (void)saveVideoFromCameraToPhotoAlbumWithInfo:(NSDictionary *)info
completion:(void(^)(PHAsset * _Nullable asset))completion;
@end
PHAsset+Picking.m
@implementation PHAsset (Picking)
+ (PHAsset *)retrievePHAssetWithLocalIdentifier:(NSString *)identifier {
PHAsset *asset = nil;
if (identifier) {
PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[identifier] options:nil];
asset = result.firstObject;
}
return asset;
}
+ (void)saveVideoFromCameraToPhotoAlbumWithInfo:(NSDictionary *)info
completion:(void(^)(PHAsset * _Nullable asset))completion
{
// get URL to file from picking media info
NSURL *url = info[UIImagePickerControllerMediaURL];
__block PHAssetChangeRequest *changeRequest = nil;
__block PHObjectPlaceholder *assetPlaceholder = nil;
// save video file to library
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
changeRequest = [PHAssetChangeRequest creationRequestForAssetFromVideoAtFileURL:url];
assetPlaceholder = changeRequest.placeholderForCreatedAsset;
} completionHandler:^(BOOL success, NSError *error) {
if (success) {
// get saved object as PHAsset
PHAsset *asset = [PHAsset retrievePHAssetWithLocalIdentifier:assetPlaceholder.localIdentifier];
completion(asset);
} else {
completion(nil);
}
}];
}
@end
然后在里面使用方法saveVideoFromCameraToPhotoAlbumWithInfo
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];
if ([mediaType isEqualToString:(NSString *)kUTTypeMovie]) {
Weakify(self);
void (^processAsset)(PHAsset *, NSDictionary *) = ^void(PHAsset *asset, NSDictionary *mediaInfo) {
[PHImageManager.defaultManager requestAVAssetForVideo:asset
options:nil
resultHandler:^(AVAsset *asset,
AVAudioMix *audioMix,
NSDictionary *assetInfo)
{
Strongify(self);
if ([asset respondsToSelector:@selector(URL)]) {
// URL to video file here -->
NSURL *videoURL = [asset performSelector:@selector(URL)];
// <--
} else {
// asset hasn't property URL
// it is can be AVComposition (e.g. user chose slo-mo video)
}
}];
};
if (UIImagePickerControllerSourceTypeCamera == picker.sourceType) {
// save video from camera
[PHAsset saveVideoFromCameraToPhotoAlbumWithInfo:info completion:^(PHAsset *asset) {
// processing saved asset
processAsset(asset, info);
}];
} else {
// processing existing asset from library
processAsset(info[UIImagePickerControllerPHAsset], info);
}
} else {
// image processing
}
}