Query to MediaStore.Video.Media.EXTERNAL_CONTENT_URI returns only video in /sdcard/DCIM/100MEDIA
MediaStore.Video.Media.EXTERNAL_CONTENT_URI
/sdcard/DCIM/100MEDIA
But I want to get thumbnails for video in
You can use this method with any Uri:
Uri
public static Bitmap getVideoFrame(Uri uri, Context context) { MediaMetadataRetriever retriever = new MediaMetadataRetriever(); retriever.setDataSource(context, uri); return retriever.getFrameAtTime(); }