How Resize video works
Video resize changes the pixel dimensions of a clip using ffmpeg's scale filter, entirely inside your browser. Pick a resolution preset (1080p, 720p or 480p, source aspect ratio preserved), a percentage of the source size, or an exact custom width and height, and ffmpeg re-encodes the video stream at the new size while copying the audio untouched.
Every mode is even-dimension safe: the standard yuv420p pixel format that most players expect requires width and height divisible by two, so preset and percentage mode use ffmpeg's own even-rounding (the -2 scale value), and custom mode rounds an odd input down to the nearest even number rather than failing the encode.