检索视频的缩略图
我正在尝试制作一个展示最佳电影预告片的应用程序。我想显示一个带有每个视频缩略图的网格视图,然后单击它们打开一个新的活动来播放视频。
给定视频的某个时刻,我如何检索缩略图?如果这很复杂,第一帧也足够了。谢谢
I'm trying to make an application for showing the best movie trailers. I'd like to show a grid view with the thumbnails of each video and then clicking them open a new Activity for playing the video.
Given a moment of the video, how can I retrieve the thumbnail? If that is complicated the first frame is enought too. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 API 2.0 或更高版本,这将起作用。
获取视频 ID:
获取视频缩略图:
编辑:
如果您使用的是 android-8 (Froyo) 或更高版本,则可以使用 ThumbnailUtils.createVideoThumbnail 来自视频路径:
希望有帮助!
If you are using API 2.0 or newer this will work.
To get video id:
To get the thumbnail of the video:
EDIT:
If you are on android-8 (Froyo) or above, you can use ThumbnailUtils.createVideoThumbnail from video path:
Hope it helps!