我试图使用AVFoundation中的类来获取视频的第一帧。但它似乎根本没有获得图像。
我的代码目前看起来像这样
AVURLAsset* asset = [AVURLAsset URLAssetWithURL:[NSURL URLWithString:videoPath] options:nil];
AVAssetImageGenerator* imageGenerator = [AVAssetImageGenerator assetImageGeneratorWithAsset:asset];
UIImage* image = [UIImage imageWithCGImage:[imageGenerator copyCGImageAtTime:CMTimeMake(0, 1) actualTime:nil error:nil]];
[videoFrame setImage:image];
视频路径的值为/var/mobile/Applications/02F42CBF-D8BD-4155-85F2-8CF1E55B5023/Documents/videos/1334300431637030.mp4
,这绝对是一个视频,因为我可以使用MPMoviePlayerViewController
播放它。我不确定我做错了什么,但任何建议都会有所帮助。
感谢。
答案 0 :(得分:22)
我解决了。显然使用[NSURL fileURLWithPath:videoPath]
代替[NSURL URLWithString:videoPath]
会产生重大影响。
答案 1 :(得分:13)
我使用null0pointer解决方案,但在某些视频中,我收到了第一帧旋转。要解决此问题,我将AVAssetImageGenerator的applyPreferredTrackTransform属性设置为TRUE。这段代码看起来像这样:
AVURLAsset* asset = [AVURLAsset URLAssetWithURL:fileURL options:nil];
AVAssetImageGenerator* imageGenerator = [AVAssetImageGenerator assetImageGeneratorWithAsset:asset];
[imageGenerator setAppliesPreferredTrackTransform:TRUE];
UIImage* image = [UIImage imageWithCGImage:[imageGenerator copyCGImageAtTime:CMTimeMake(0, 1) actualTime:nil error:nil]];
[self.imageView setImage:image];
答案 2 :(得分:0)
在 Swift 4.0 中执行此操作:
// Assumes you have a local `fileURL`
var avAsset = AVURLAsset(url: fileURL, options: nil)
var imageGenerator = AVAssetImageGenerator(asset: avAsset)
imageGenerator.appliesPreferredTrackTransform = true
var thumbnail: UIImage?
do {
thumbnail = try UIImage(cgImage: imageGenerator.copyCGImage(at: CMTime(seconds: 0, preferredTimescale: 1), actualTime: nil))
} catch let e as NSError {
print("Error: \(e.localizedDescription)")
}