Re: [FFmpeg-user] combining concatenating movies

2019-07-05 Thread R C
Hello, what I came up with is something like this: ffmpeg -f concat safe 0 -i movlist.txt -codec copy output.mp4 here movlist has entries like: file '../07-04-2019/2019_0704_133725_071.MOV' I had a dozen or so entries. (after that I turned it into a timelapsed movie using something like

Re: [FFmpeg-user] combining concatenating movies

2019-07-04 Thread Stéphane Chauveau
I was wondering the same things a few days ago and a simple solution seems to be the concat filter. https://ffmpeg.org/ffmpeg-filters.html#concat A simple example that works fine for me for inputs of the same size and no audio is: ffmpeg \    -ss 00:00 -t 4 -i input1.mp4 \    -ss 00:06 -t 5

[FFmpeg-user] combining concatenating movies

2019-07-04 Thread R C
Hello, I would like to combine a bunch of movies (a dozen or so short ones) to one long movie. The short movies are from a dashcam, here is some info; container: Quicktime dimensions: 1920x1080 Codec: H.264 Framerate: 30 frames per second Bitrate: varies per file ... Audio doesn't matte