avconv: make a video from a subset on images

后端 未结 3 1899
名媛妹妹
名媛妹妹 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:42

    You can concatenate the files with cat and then use the image2pipe demuxer to read them in avconv. Like cat filename* | avconv -f image2pipe -i - ...

提交回复
热议问题