我如何从 android 中的远程 url 获取视频缩略图
How can i get video thumbnail from remote url in android
我正在尝试从 URL 示例中获取缩略图:“https://www.learningcontainer.com/wp-content/uploads/2020/05/sample-mp4-file.mp4” 在 IOS 中使用 AVAssets 是可能的.我这样做的方式是使用以下函数
public static Bitmap retriveVideoFrameFromVideo(String videoPath) throws Throwable {
Bitmap bitmap = null;
MediaMetadataRetriever mediaMetadataRetriever = null;
try {
mediaMetadataRetriever = new MediaMetadataRetriever();
if (Build.VERSION.SDK_INT >= 14)
mediaMetadataRetriever.setDataSource(videoPath, new HashMap<String, String>());
else
mediaMetadataRetriever.setDataSource(videoPath);
// mediaMetadataRetriever.setDataSource(videoPath);
bitmap = mediaMetadataRetriever.getFrameAtTime(1, MediaMetadataRetriever.OPTION_CLOSEST);
} catch (Exception e) {
e.printStackTrace();
throw new Throwable("Exception in retriveVideoFrameFromVideo(String videoPath)" + e.getMessage());
} finally {
if (mediaMetadataRetriever != null) {
mediaMetadataRetriever.release();
}
}
return bitmap;
}
但问题是它会减慢回收视图并一次又一次地加载图像。
我已经使用 GLide 4.x 解决了这个问题。我通过使用 MediaMetadataRetriever 找到了另一种解决方案。但在回收视图中使用 MediaMetadataRetriever 是不可行的,因为它在主线程上运行并导致 ANR。下面是适合我的代码。
RequestOptions requestOptions = new RequestOptions();
Glide.with(context)
.load("Your URL")
.apply(requestOptions)
.thumbnail(Glide.with(context).load("Your URL"))
.into(holder.img_video_attachment_preview);
你自己的答案对我有用,稍微调整一下,我最终得到了一个稍微短一些的版本。尽管您这样做可能有自己的理由...
GlideApp.with(context)
.load(item.videoURL) // your video url
.into(image_view)
我正在尝试从 URL 示例中获取缩略图:“https://www.learningcontainer.com/wp-content/uploads/2020/05/sample-mp4-file.mp4” 在 IOS 中使用 AVAssets 是可能的.我这样做的方式是使用以下函数
public static Bitmap retriveVideoFrameFromVideo(String videoPath) throws Throwable {
Bitmap bitmap = null;
MediaMetadataRetriever mediaMetadataRetriever = null;
try {
mediaMetadataRetriever = new MediaMetadataRetriever();
if (Build.VERSION.SDK_INT >= 14)
mediaMetadataRetriever.setDataSource(videoPath, new HashMap<String, String>());
else
mediaMetadataRetriever.setDataSource(videoPath);
// mediaMetadataRetriever.setDataSource(videoPath);
bitmap = mediaMetadataRetriever.getFrameAtTime(1, MediaMetadataRetriever.OPTION_CLOSEST);
} catch (Exception e) {
e.printStackTrace();
throw new Throwable("Exception in retriveVideoFrameFromVideo(String videoPath)" + e.getMessage());
} finally {
if (mediaMetadataRetriever != null) {
mediaMetadataRetriever.release();
}
}
return bitmap;
}
但问题是它会减慢回收视图并一次又一次地加载图像。
我已经使用 GLide 4.x 解决了这个问题。我通过使用 MediaMetadataRetriever 找到了另一种解决方案。但在回收视图中使用 MediaMetadataRetriever 是不可行的,因为它在主线程上运行并导致 ANR。下面是适合我的代码。
RequestOptions requestOptions = new RequestOptions();
Glide.with(context)
.load("Your URL")
.apply(requestOptions)
.thumbnail(Glide.with(context).load("Your URL"))
.into(holder.img_video_attachment_preview);
你自己的答案对我有用,稍微调整一下,我最终得到了一个稍微短一些的版本。尽管您这样做可能有自己的理由...
GlideApp.with(context)
.load(item.videoURL) // your video url
.into(image_view)