How to use FFMPEG with java?

前端 未结 1 382
南方客
南方客 2021-02-06 10:41

I\'m using the following command to convert sequence of images to a video.

ffmpeg -r 1 -i sample%d.png -s 320x240 -aspect 4:3 output.flv

This w

相关标签:
1条回答
  • 2021-02-06 11:05
    Runtime.getRuntime().exec("ffmpeg -r 1 -i sample%d.png -s 320x240 -aspect 4:3 output.flv");
    
    0 讨论(0)
提交回复
热议问题