creating video from selected images using FFMPEG through command Line Android
问题 i am trying to make a video from selected images from command line using ffmpeg in android using this project as my source i m trying to make video this is the command i m trying to create video String[] ffmpegCommand = {ffmpegBin, "-y", "-qscale", "1", "-r", "" + frameRate, "-i", image1.getAbsolutePath(), "-t", "" + (((4) * 30) + 4), //"-s",heightwidth, "-i", image2.getAbsolutePath(), "-t", "" + (((4) * 30) + 4), //"-s",heightwidth, "-i", image3.getAbsolutePath(), "-t", "" + (((4) * 30) + 4)