To concatenate a video and a timelapse using ffmpeg, you can use the concat demuxer. Here’s an example of how you can do it:
Create a text file called list.txt that contains the paths to your video and timelapse, one file per line. The order of the files in this list determines the order in which they will be concatenated. For example:
Use the ffmpeg command to concatenate the files, using the concat demuxer and the list.txt file you created.
ffmpeg -f concat -safe 0 -i list.txt -c copy output.mp4This will create a new file called output.mp4 that contains the concatenated video and timelapse.