Сбой приложения: когда writeVideoAtPathToSavedPhotosAlbum использует ALAssetsLibrary - PullRequest
0 голосов
/ 30 января 2019

Мы создаем приложение для чата, а для миниатюр видео мы используем следующий код.Но в некоторых случаях происходит сбой.

NSArray *arrjid = [jid componentsSeparatedByString:@"@"];
NSDateFormatter *dateFormatter=[[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyyMMddHHmmss"];
NSString *strdate = [dateFormatter stringFromDate:[NSDate date]];
NSString *strname = [NSString stringWithFormat:@"%@_%@_file.mov",arrjid[0],strdate];
NSString *videoPath = [[NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent:strname];
[videoData writeToFile:videoPath atomically:YES];

if([[NSFileManager defaultManager] fileExistsAtPath:videoPath])
{
    ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
    [library writeVideoAtPathToSavedPhotosAlbum:[NSURL fileURLWithPath:videoPath] completionBlock:^(NSURL *assetURL, NSError *error) {
    }];
}

Каждый раз, когда происходит сбой в строке writeVideoAtPathToSavedPhotosAlbum, и выдается только «ошибка неверного доступа».

У кого-нибудь есть идеи, связанные с этим

Ответы [ 2 ]

0 голосов
/ 20 мая 2019

Убедитесь, что у вас есть разрешение на сохранение в фотогалерее.

Импорт класса фотографий:

#import <Photos/Photos.h>

Затем проверьте авторизацию библиотеки фотографий

PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus];

if (status == PHAuthorizationStatusAuthorized) {
    //OK to save your video
    [self ContinueDownload];
}
else if (status == PHAuthorizationStatusDenied) {
    // Access has been denied.
    [self ShowAlert];
}
else if (status == PHAuthorizationStatusNotDetermined) {

    // Access has not been determined.
    [PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) {

        if (status == PHAuthorizationStatusAuthorized) {
             //OK to save your video
            [self ContinueDownload];
        }
        else {
            // Access has been denied.
            [self ShowAlert];
        }
    }];
}
else if (status == PHAuthorizationStatusRestricted) {
    // Restricted access
}

//Show an alert if access is denied
-(void)ShowAlert {
    UIAlertController * alert = [UIAlertController
                                 alertControllerWithTitle:@"Gallery Access denied"
                                 message:@"You can grant access in\nSettings/Privacy/Photos\nif you change your mind."
                                 preferredStyle:UIAlertControllerStyleAlert];



    UIAlertAction* OKButton = [UIAlertAction
                               actionWithTitle:@"OK"
                               style:UIAlertActionStyleDefault
                               handler:^(UIAlertAction * action) {
                                   //[self dismissViewControllerAnimated:YES completion:nil];
                               }];

    [alert addAction:OKButton];

    [self presentViewController:alert animated:YES completion:nil];

}
0 голосов
/ 30 января 2019

Метод библиотеки ALAssetsLibrary writeVideoAtPathToSavedPhotosAlbum: завершенииBlock: устарел, вместо него можно использовать PHPhotoLibrary.

попробуйте это

[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
    [PHAssetChangeRequest creationRequestForAssetFromVideoAtFileURL: yourVideoURlHere];
} completionHandler:^(BOOL success, NSError *error) {
    if (success) {
        //Do Something   
    }
}];

Также проверьте, есть ли у вас описание использования библиотеки фотографий в информационном списке со следующимключ

NSPhotoLibraryUsageDescription

ОБНОВЛЕНИЕ

Для извлечения миниатюры из видео вы можете использовать класс AVAssetImageGenerator из инфраструктуры AVFoundation

- (UIImage *) thumbnailFromVideoAtURL:(NSURL *) contentURL {
    AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:contentURL options:nil];
    AVAssetImageGenerator *generator = [[AVAssetImageGenerator alloc] initWithAsset:asset];
    generator.appliesPreferredTrackTransform = YES;
    NSError *err = NULL;
    CMTime time = CMTimeMake(1, 60);
    CGImageRef imgRef = [generator copyCGImageAtTime:time actualTime:NULL error:&err];
    UIImage *thumbnail = [[UIImage alloc] initWithCGImage:imgRef];
    CGImageRelease(imgRef);

    return thumbnail;
}
...