Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下命令将图像序列转换为视频。
ffmpeg -r 1 -i sample%d.png -s 320x240 -aspect 4:3 output.flv
这对我来说很好!
现在我正在尝试使用上面的命令来运行 java 代码。
如何使用Runtime.getRuntime()我的 java 代码运行 ffmpeg 命令。
Runtime.getRuntime()
请分享你的想法..
Runtime.getRuntime().exec("ffmpeg -r 1 -i sample%d.png -s 320x240 -aspect 4:3 output.flv");