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");