Source: StackOverflow, StackOverflow
Question: How to get the path of all videos stored on device.
Answer:
private String[] getAllVideoPath(Context context) {
Uri uri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
String[] projection = { MediaStore.Video.VideoColumns.DATA };