我在使用(Grand Central Dispatch)在另一個線程中使用MPMoviePlayer時遇到了問題。我想通過網址吸引視頻,剪切第5幀並返回圖片。在模擬器工作正常,但在一個真正的設備 - 秋天。這裏有什麼問題?也許它只適用於主線程?從線程中的視頻url中提取縮略圖
NSURL* url = [NSURL URLWithString:filePath];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^(void)
{
MPMoviePlayerController* moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];
moviePlayer.shouldAutoplay = NO;
UIImage* thumbnail = [moviePlayer thumbnailImageAtTime:5 timeOption:MPMovieTimeOptionNearestKeyFrame];
dispatch_async(dispatch_get_main_queue(), ^(void)
{
[[Singleton sharedSingleton].imageCache setValue:thumbnail forKey:filePath];
[cell.presentationViewOutlet setImage:thumbnail];;
});
});
現在,我嘗試使用另一種方法,但它也適用於模擬器,並且在真實設備上不顯示。有時會返回imageRef = (null)
,有時會返回imageRef = <CGImage 0x1766dd20>
。
編輯:
NSURL* url = [NSURL URLWithString:filePath];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^(void)
{
AVAsset *asset = [AVAsset assetWithURL:videoURL];
AVAssetImageGenerator *imageGenerator = [[AVAssetImageGenerator alloc]initWithAsset:asset];
imageGenerator.appliesPreferredTrackTransform = TRUE;
CMTime time = CMTimeMakeWithSeconds(1, 1);
NSError *err = NULL;
CGImageRef imageRef = [imageGenerator copyCGImageAtTime:time actualTime:NULL error:&err];
dispatch_async(dispatch_get_main_queue(), ^(void)
{
NSLog(@"imageRef = %@", imageRef);
UIImage* image = [UIImage imageWithCGImage:imageRef];
if (image != nil)
{
NSLog(@"image != nil");
[view setImage:image];
NSString* videoURLString = [videoURL absoluteString];
[[Singleton sharedSingleton].imageCache setValue:image forKey:videoURLString];
CGImageRelease(imageRef);
}
else
{
NSLog(@"err = %@", err);
}
});
});
錯誤:
如果imageRef =(空)表示ERR = Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo=0x156c1a50 {NSLocalizedDescription=The operation could not be completed, NSUnderlyingError=0x155b29a0 "The operation couldn’t be completed. (OSStatus error -12792.)", NSLocalizedFailureReason=An unknown error occurred (-12792)}
您是否找到解決此問題的解決方案?我現在也面臨同樣的問題:( –
@ VishnuKumar.S你找到了解決方案?面臨同樣的問題:(http://stackoverflow.com/questions/37374008/ios-swift-video-thumbnail-error – Sam