Make thumbnails in jpg format of Videos : - Point to Note:- There is need to install ffmpeg in your system. public int compressVideioToJpg(String inputVideo, String outputJpg) { int returnCode = 0; Process process; try { System.out.println("compressVideioToJpg called"); System.out.println("inputVideo:"+inputVideo); System.out.println("outputVidio:"+outputJpg); String[] command = { "ffmpeg", "-i", inputVideo , "-an", "-r", ".1", "-y","-s","236x148", outputJpg}; System.out.println("22:"); process = Runtime.getRuntime().exec(command); System.out.println("after process JPG"); returnCode = proce...