how to use ffmpeg to apply 1:1 SAR before concat on large complex filter

一笑奈何 提交于 2019-12-01 11:23:51

Add the setsar filter:

ffmpeg -i 0.mp4 -i 1.mp4 -i 2.mp4 -filter_complex "[0:v]setsar=1[v0];[v0][1:v][2:v]concat=n=3:v=1:a=0[v]" -map "[v]" out.mp4

This example is assuming that 0.mp4 is the video with the wrong SAR.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!