ffmpeg文件拼接

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

concat demuxer

  1. Create a text file and include the paths and names of each file to concatenate (or "join"). Example file, input.txt:

    file '/home/jenia/input1.mp4'
    file '/home/jenia/input2.mp4'
    file '/home/jenia/input3.mp4'
    
  2. Now you can use the concat demuxer:

    ffmpeg -f concat -i input.txt -codec copy output.mp4

 

转载于:https://my.oschina.net/zilinangel1986/blog/791366

你可能感兴趣的:(ffmpeg,python)