320kbps
← Back to presets

Resize Video

Resize a video while keeping its aspect ratio.

input.mp4

Selected file

Ready

FFmpeg command

ffmpeg -i 'input.mp4' -vf scale=1280:-2 'output.mp4'

About this command

Resizes the video to the selected width while automatically calculating the height to preserve the original aspect ratio.

-i

Specifies the input video file.

-vf scale

Applies FFmpeg's video scaling filter.

scale=1280:-2

Sets the video width to 1280 pixels and automatically calculates the height while preserving the aspect ratio.