videobeaux

Logo

The friendly multilateral video toolkit built for artists by artists.

View the Project on GitHub schwwaaa/videobeaux

resize

Description

Resizes the dimensions of a video to a specified width and height.
This module performs a direct scale transformation, producing clean, predictable results for platform formatting, layout prep, or visual uniformity.

Purpose

resize is designed for creators who want to:

How It Works

  1. Dimension Override
    The user specifies:
    • new_width
    • new_height
  2. Scaling Filter
    FFmpeg’s scaler processes each frame to the requested resolution.
  3. Output Encoding
    The final resized image is encoded using global Videobeaux settings (CRF, codec, pixel format, preset).

Program Template

videobeaux -P resize -i input.mp4 -o output.mp4 --new_height VALUE --new_width VALUE

Arguments

Real World Example

videobeaux -P resize \
  -i myvideo.mp4 \
  -o resize_styled.mp4 \
  --new_height EXAMPLE \
  --new_width EXAMPLE

Program Output

Program output video not yet linked.

Technical Notes

Quality Tips