Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个记录“视频”的应用程序,并将其保存到文档目录中的文件夹中。我想知道如何获得像 Photo 应用程序中的缩略图。这样当用户点击它时,我就会全屏播放视频。
这是一个屏幕截图。
也许这可以帮助你:
MPMoviePlayerController *movie = [[MPMoviePlayerController alloc] initWithContentURL:fileUrl]; movie.shouldAutoplay = NO; UIImage *image = [movie thumbnailImageAtTime:0 timeOption:MPMovieTimeOptionNearestKeyFrame]; [movie release];