videobeaux

Logo

The friendly multilateral video toolkit built for artists by artists.

View the Project on GitHub schwwaaa/videobeaux

mince

Description

A fast, precise segment extractor and reassembler that slices video into parts and recombines them with frame accuracy.
mince can cut, shuffle, normalize, re-encode, or stitch segments while preserving sync, enabling procedural editing, glitch slicing, and automated timeline reconstruction.

Purpose

mince is designed for creators who want to:

How It Works

  1. Mode Selection (--mode)
    Defines how segments are generated or chosen:
    • deterministic slicing,
    • random slicing controlled by seed,
    • engine-based segmentation strategies.
  2. Randomization (--seed)
    Ensures reproducibility of shuffled or randomized edits.
  3. Engine (--engine)
    Different engines may determine how cuts are generated (e.g., time-based, detection-based, algorithmic).
  4. Normalization (--normalize + related options)
    If enabled, each segment is re-encoded using:
    • norm_vcodec
    • norm_crf
    • norm_preset
      ensuring consistent dimensions, codecs, and quality levels.
  5. Reconstruction
    Segments are concatenated in the final order (based on engine or mode).
  6. Output Encoding
    After assembly, the final output is encoded using user-selected codecs, presets, and flags.

Program Template

videobeaux -P mince \
  -i input.mp4 \
  -o output.mp4 \
  --mode VALUE \
  --seed VALUE \
  --engine VALUE \
  --normalize VALUE \
  --size VALUE \
  --fit VALUE \
  --fps VALUE \
  --pixfmt VALUE \
  --ar VALUE \
  --ac VALUE \
  --norm_vcodec VALUE \
  --norm_crf VALUE \
  --norm_preset VALUE \
  --vcodec VALUE \
  --acodec VALUE \
  --crf VALUE \
  --preset VALUE \
  --faststart VALUE \
  --fallback_reencode VALUE \
  --decode_tolerant VALUE \
  --hard_trim VALUE

Arguments

Real World Example

videobeaux -P mince \
  -i myvideo.mp4 \
  -o mince_styled.mp4 \
  --mode EXAMPLE \
  --seed EXAMPLE \
  --engine EXAMPLE \
  --normalize EXAMPLE \
  --size EXAMPLE \
  --fit EXAMPLE \
  --fps EXAMPLE \
  --pixfmt EXAMPLE \
  --ar EXAMPLE \
  --ac EXAMPLE \
  --norm_vcodec EXAMPLE \
  --norm_crf EXAMPLE \
  --norm_preset EXAMPLE \
  --vcodec EXAMPLE \
  --acodec EXAMPLE \
  --crf EXAMPLE \
  --preset EXAMPLE \
  --faststart EXAMPLE \
  --fallback_reencode EXAMPLE \
  --decode_tolerant EXAMPLE \
  --hard_trim EXAMPLE

Program Output

Program output video not yet linked.

Technical Notes

Quality Tips