How to merge videos by avconv?

前端 未结 10 2204
逝去的感伤
逝去的感伤 2021-01-30 17:12

I have several chunks in folder.

0001.mp4
0002.mp4
0003.mp4
...
0112.mp4

I would like to merge them into full.mp4

I tried to use:

10条回答
  •  孤独总比滥情好
    2021-01-30 17:35

    This one works for me:

    avconv -i "concat:001.mp4|002.mp4|003.mp4" -c copy full.mp4
    

    Just concats all the files into one mp4 without re-encoding them.

提交回复
热议问题