其他分享
首页 > 其他分享> > 如何在Android中的视频文件路径中创建视频缩略图?

如何在Android中的视频文件路径中创建视频缩略图?

作者:互联网

我想从SD卡路径创建视频的缩略图.我怎样才能做到这一点?

解决方法:

您可以使用ThumbnailUtils类获取视频文件的视频缩略图.

createVideoThumbnail()是从视频文件路径返回视频的Bitmap(缩略图)的方法.

来自Android文档:

public static Bitmap createVideoThumbnail (String filePath, int kind)

Create a video thumbnail for a video. May return null if the video is
corrupt or the format is not supported.

你可以像这样从sdcard路径创建VideoThumbnail.

Bitmap thumb = ThumbnailUtils.createVideoThumbnail(filePath, Thumbnails.MINI_KIND);

使用ThumbnailUtils,您可以创建两种类型的缩略图.

> MediaStore.Images.Thumbnails.MICRO_KIND类型将生成大小为96 x 96的缩略图.
> MediaStore.Images.Thumbnails.MINI_KIND类型将生成大小为512 x 384的缩略图.

我希望它有所帮助!

标签:android,eclipse,android-sdcard,video-thumbnails
来源: https://codeday.me/bug/20190930/1836933.html