Well after hours, I got a nice solution for that.
Maybe it isn't the best way, but it is good enough for me.
private long start;
private long end;
private long period;
First get a start time right after the media recorder starts:
private void startRecording()
{
mMediaRecoder.start();
start = System.currentTimeMillis();
}
Then, when u press on the screen/button for taking screenshot, save the period:
private void captureImage()
{
end = System.currentTimeMillis();
period = end - start;
}
Finally, when you stop recording, get the bitmap using the period and the Media retriever:
private void saveVideo()
{
MediaMetadataRetriever retriever = new MediaMetadataRetriever();
//path -> the path to the video
retriever.setDataSource(path);
Bitmap bitmap = retriever.getFrameAtTime(period * 1000,MediaMetadataRetriever.OPTION_CLOSEST);
}
Hope it helps you!