How to merge videos by avconv?

前端 未结 10 2203
逝去的感伤
逝去的感伤 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:30

    I am using ffmpeg command to do this. Here is example:

    ffmpeg -i concat:/dev/null|file1.ts|file2.ts -c copy -bsf:a aac_adtstoasc -y output.mp4
    

    Take a look at this github project for Distributed parallel video trascoding

提交回复
热议问题