FFMPEG mengubah resolusi
ffmpeg.exe -i input.mp4 -s 1376x744 output.mp4
HosseinZaaferani
ffmpeg.exe -i input.mp4 -s 1376x744 output.mp4
ffmpeg -i input.mp4 -vf scale=1280:-2 output.mp4
// -2 as ffmpeg need to keep dimensions dividable by 2.