avconv: make a video from a subset on images

后端 未结 3 1896
名媛妹妹
名媛妹妹 2021-01-31 09:59

I am trying to make a bunch of png\'s into a video using avconv, the png\'s are numbered like filename_ so I usually just use the command:

3条回答
  •  被撕碎了的回忆
    2021-01-31 10:45

    avconv -r 10 -start_number 8 -i filename_%d.png -b:v 1000k test.mp4
    

    You will need a recent 9.x version of avconv for the -start_number option; it is not in version 0.8.x. Alternatively you could use a recent version of ffmpeg. Or rename the files to start with a number between 0 and 4, as it will check for those names by default.

提交回复
热议问题