我正在尝试使用 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];
video path 的值/var/mobile/Applications/02F42CBF-D8BD-4155-85F2-8CF1E55B5023/Documents/videos/1334300431637030.mp4
是肯定是视频,因为我可以用MPMoviePlayerViewController
. 我不确定我做错了什么,但任何建议都会有所帮助。
谢谢。