FFmpeg adding image watermark to video process is very slow
问题 I am adding image watermark to video with help of FFmpeg but FFmpeg takes an inordinate amount of time with the below command- String[] cmd = {"-i",videoPath, "-i", waterMark.toString(),"-filter_complex","overlay=5:5","-codec:a", "copy", outputPath}; so i tried another command which was little bit faster but increase output file size(which i do not want) String[] cmd = {"-y","-i", videoPath, "-i", waterMark.toString(), "-filter_complex", "overlay=5:5", "-c:v","libx264","-preset", "ultrafast",