1 2 3 4 5 6
# Straight scale change ffmpeg -i video_1920.mp4 -vf scale=640:360 video_640.mp4 -hide_banner ffmpeg -i video_1920.mp4 -vf scale=1280:720 video_720.mp4 -hide_banner # Scale change with ratio change ffmpeg -i video_1920.mp4 -vf scale=640:480,setdar=4:3 video_640x480.mp4 -hide_banner