ffmpeg image to video frame length
hi i am useing ffmpeg to convert images into videos but images loads very fast and movie end very shortly how can i add a delay in images
开发者_运维百科i am useing this command
ffmpeg -r 10 -b 1800 -i %03d.jpg -vframes 100 abc.avi
Lower the -r value, you have it currently set to 10 frames per second.
精彩评论