0

我使用以下代码从给定路径的视频中获取图像。

- (UIImage*) thumbnailImageForVideo:(NSURL *)videoURL atTime:(NSTimeInterval)time {
    AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURL options:nil];
    NSParameterAssert(asset);
    AVAssetImageGenerator *assetImageGenerator = [[AVAssetImageGenerator alloc] initWithAsset:asset];
    assetImageGenerator.appliesPreferredTrackTransform = YES;
    assetImageGenerator.apertureMode = AVAssetImageGeneratorApertureModeEncodedPixels;

    CGImageRef thumbnailImageRef = NULL;
    CFTimeInterval thumbnailImageTime = time;
    NSError *thumbnailImageGenerationError = nil;
    thumbnailImageRef = [assetImageGenerator copyCGImageAtTime:CMTimeMake(thumbnailImageTime, 60) actualTime:NULL error:&thumbnailImageGenerationError];

    if (!thumbnailImageRef)
        NSLog(@"thumbnailImageGenerationError %@", thumbnailImageGenerationError);

    UIImage *thumbnailImage = thumbnailImageRef ? [[UIImage alloc] initWithCGImage:thumbnailImageRef]  : nil;
    previewImage = thumbnailImage;

    return thumbnailImage;
}

但是,这不适用于保存在 NSDocumentDirectory 中的视频。我们不能使用 NSURL 访问 NSDocumentDIrectory 吗?如果没有其他选择。主要思想是显示保存在文档目录中的图像的缩略图,然后允许它上传到服务器。这也可以是一个临时目录。

4

1 回答 1

0

当你使用 NSURL *outputURL = [[NSURL alloc] initFileURLWithPath: path];

于 2012-09-10T17:30:32.773 回答