我想组合图像和音频文件来创建视频输出。 我可以从命令行执行此操作: ffmpeg -loop 1 -i /tmp/image.jpeg -i /tmp/audiot.mp3 -vf' scale = 320:trunc(ow / a / 2)* 2' -acodec libvo_aacenc -b:192k -shortest /tmp/output.mp4
但是当我尝试使用ffmpeg-cli-wrapper java实现相同的行为时,progam会无限期地继续运行。 Raised issue on GitHub too.
我无法在网上找到任何这样的例子。如果有人知道如何使用相同或任何其他框架实现此行为,请告诉我。 这是我的示例测试java程序。
FFmpeg ffmpeg = new FFmpeg("/usr/bin/ffmpeg/ffmpeg");
FFprobe ffprobe = new FFprobe("/usr/bin/ffprobe");
FFmpegBuilder builder = new FFmpegBuilder()
.setInput("/tmp/image.jpeg")// Filename, or a FFmpegProbeResult
.addInput("/tmp/audio.mp3")
.addExtraArgs("-loop","1")
.overrideOutputFiles(true) // Override the output if it exists
.addOutput("/tmp/output.mp4") // Filename for the destination
.setFormat("mp4") // Format is inferred from filename, or can be set
//.setTargetSize(250_000) // Aim for a 250KB file
//.disableSubtitle() // No subtiles
//.setAudioChannels(1) // Mono audio
.setAudioCodec("aac") // using the aac codec
.setAudioSampleRate(48_000) // at 48KHz
.setAudioBitRate(32768) // at 32 kbit/s
.setVideoCodec("libx264") // Video using x264
.setVideoFrameRate(24, 1) // at 24 frames per second
.setVideoResolution(640, 480) // at 640x480 resolution
//.setComplexVideoFilter("scale=320:trunc(ow/a/2)*2")
.setStrict(FFmpegBuilder.Strict.EXPERIMENTAL) // Allow FFmpeg to use experimental specs
.done();
FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe);
// Run a one-pass encode
executor.createJob(builder).run();
答案 0 :(得分:0)
您的示例命令和代码中的命令似乎不同。
您的图像输入使用-loop 1
输入选项连续循环(或者至少我假设它正在应用,但很难说),但您的代码缺少-shortest
输出选项导致命令无限期运行。