I am trying to extract all frames from a video.
By following code I want to fetch the first 30 frames of a video, but I got only first frame 30 times.
private ArrayList<Bitmap> getFrames(String path) {
try {
ArrayList<Bitmap> bArray = new ArrayList<Bitmap>();
bArray.clear();
MediaMetadataRetriever mRetriever = new MediaMetadataRetriever();
mRetriever.setDataSource("/sdcard/myvideo.mp4");
for (int i = 0; i < 30; i++) {
bArray.add(mRetriever.getFrameAtTime(1000*i,
MediaMetadataRetriever.OPTION_CLOSEST_SYNC));
}
return bArray;
} catch (Exception e) { return null; }
}
Now, how can I get all frames from a video?
getFrameAtTimeis in microseconds, so for a 30 fps video there will be approximately 33333 microseconds between each frame. The last frame your code tries to read is at 30000 microseconds - i.e. you won't even have moved ahead to the second frame (depending on your frame rate of course). The other thing is thatOPTION_CLOSEST_SYNCretrieves the keyframe closest to the time you specify. There are typically less keyframes than total frames in a compressed video. – Michael Feb 27 at 15:17OPTION_CLOSEST_SYNC. It's not unlikely that the video contains 10 or more frames for every keyframe. UseOPTION_CLOSESTif you want to get any kind of frame instead of just keyframes. – Michael Feb 28 at 8:33OPTION_CLOSESTis what you should use if you want to get any frame (rather than just the keyframes) regardless of the length of the video. – Michael Feb 28 at 10:25