Task: there are many files in mp4 of different sizes from different cameras. You need to get one video in mp4 with black frames, if not enough in size. The main thing is to have no distortion scaling. Total proportions should be 16: 9.

tried the following

ffmpeg -f concat -i files.txt -aspect 16: 9 -c: v mpeg4 output.mp4

Obviously did something wrong. I would be grateful for the help.

  • something tells me that I need to use filter_complex - Nik

1 answer 1

In fact, everything was simple. Led to general resolution all videos. Then a team

ffmpeg -f concat -i files.txt -c copy output.mp4

everything stuck together successfully. May be useful to someone