Recent content by muncrief

  1. M

    Concatenate multiple MP4 files?

    You can use ffmpeg. Following is an example if you're using windows: Make a text file with all input videos like this: # This is a comment file 'G:\adir\part1.mp4' file 'G:\adir\part2.mp4' Assuming that you named it "input.txt" execute this command: ffmpeg -f concat -i input.txt...