1.获取网络视频的第一帧要加 media.setDataSource(ServiceBuilder.IMG_SERVER+url,new HashMap<>());
MediaMetadataRetriever media = new MediaMetadataRetriever();
media.setDataSource(url,new HashMap<>());
//获取第一帧
Bitmap bitmap = media.getFrameAtTime(1, MediaMetadataRetriever.OPTION_CLOSEST_SYNC );
videoBinding.videoplayer.thumbImageView.setImageBitmap(bitmap);
2.获取本地视频 mmr.setDataSource(path);
网友评论