I use glide to get frame from video url but glide for get frame, download the whole video and it takes time.
RequestOptions myOptions = new RequestOptions()
.fitCenter()
.centerCrop().circleCrop()
.placeholder(R.drawable.loading_circle);
Glide.with(context)
.asBitmap()
.apply(myOptions)
.load(Link)
.into(image);
How can I get the last frame from the video?