I\'m trying to concat 4 mp4 files. I\'m using the command below but not able to concat
ffmpeg -i new1.mp4 -i new2.mp4 -i new3.mp4 -i new4.mp4 -filter_complex
The inputs don't have identical sample aspect ratios. Try
ffmpeg -i new1.mp4 -i new2.mp4 -i new3.mp4 -i new4.mp4 -filter_complex \ "[0]setdar=16/9[a];[1]setdar=16/9[b];[2]setdar=16/9[c];[3]setdar=16/9[d]; \ [a][b][c][d]concat=n=4:v=1:a=1" output.mp4