I'm trying to capture video frames at specific points in a video using Exoplayer but this code always capture the first frame of the video. How do I fix it
MediaMetadataRetriever retriever = new MediaMetadataRetriever();
retriever.setDataSource(yourPath);
Bitmap bitmap = retriever.getFrameAtTime(simpleExoPlayer.getCurrentPosition());
This method should get you the frame you want at the specific point