加快视频处理时间 FFMPEG,同时将多个图像添加到视频

Speed Up Video Processing time FFMPEG while adding multiple images to Video

我正在尝试以特定时间间隔将多个图像叠加到视频中... 但是对于 1 分钟的视频长度来说,处理时间太多了。 我为此使用了 VideoKit 库。 这是我将多张图片添加到视频的代码。

 String[] command = {"-i", inputPath, 
                "-i", imagePath1,"-i", imagePath2,"-i",imagePath3,
                "-filter_complex",
                "[0][1]overlay=y=H-h:enable='between(t,2,10)'[v1];
                 [v1][2]overlay=y=H-h:enable='between(t,10,20)'[v2];
                 [v2][3]overlay=y=H-h:enable='between(t,20,30)'[v3]",
                "-map", "[v3]",  outputPath};

有没有更快的视频处理库。

我刚刚添加了两个标签以加快处理速度。

String[] command = {"-i", inputPath, 
\"-i", imagePath1,"-i", imagePath2,"-i",imagePath3,
"-filter_complex",
"[0][1]overlay=y=H-h:enable='between(t,2,10)'[v1];
[v1][2]overlay=y=H-h:enable='between(t,10,20)'[v2];
[v2][3]overlay=y=H-h:enable='between(t,20,30)'[v3]",
"-map", "[v3]",
**"-preset", "ultrafast",**  outputPath};