从 iTunes 文件共享数据生成电影缩略图?
我正在使用 iTunes 文件共享功能导入用户的自定义数据。 我需要在点击自定义 UIButton 时播放视频。因此我想知道是否可以将视频中的缩略图设置到 MyButton 的每个实例。
我已经使用过 MPMoviePlayerController 及其“thumbnailImageAtTime:timeOption”函数。选择并播放该视频后效果非常好。但我需要之前为所有视频生成缩略图。
当通过 iTunes 在任何 iOS 设备上同步视频时,苹果会立即生成相机胶卷的缩略图。这就是我正在寻找的方式..有什么想法苹果是如何做到这一点的吗?
i´m using the itunes file sharing feature to import customized data from the user.
I need to play videos when tapping on a customized UIButton. Therefore i want to know if its possible to set a thumbnail image from a video to each instance of MyButton.
I´ve played already with the MPMoviePlayerController and its "thumbnailImageAtTime:timeOption" function. It works great after selecting and playing that one video. But i need to generate thumbnails for all videos before.
When syncing videos on any iOS device via itunes, apple generates thumbnails for the camera roll instantly. So thats the way i´m looking for.. Any ideas how apple is doing it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我明白了。将 AVFoundationFramework 与“AVAssetImageGenerator”一起使用;)
从视频网址或数据中获取缩略图iPhone SDK
I´ve got it. Using the AVFoundationFramework with "AVAssetImageGenerator" ;)
Getting a thumbnail from a video url or data in iPhone SDK