Using ffmpeg to Merge Videos

Put together our hyperlapse puzzle videos… First stab at a merge using ffmpeg time ffmpeg -safe 0 -f concat -i infiles.txt -vcodec copy -acodec copy merged.MOV full output here and used this infiles.txt , following the directions file ./2019-03-09\ 23.03.34.mov file ./2019-03-10\ 01.21.50.mov file ./2019-03-10\ 13.01.46.mov file ./2019-03-10\ 13.03.59.mov file ./2019-03-10\ 13.05.02.mov file ./2019-03-10\ 18.43.53.mov Did it do the right thing? What are my mov lengths.. $ cat fileslist.txt |xargs -t -I % sh -c 'ffmpeg -i "%" 2>&1 |grep Duration ' sh -c ffmpeg -i "....

March 16, 2019 · (updated February 26, 2023) · 4 min · 664 words · Michal Piekarczyk