Standalone scripts to manipulate images and video, including converting animated WEBP files to MP4, merging snapshots, and other one-off utilities. Each tool runs on its own; there is no shared framework.
-
Use Python 3.12 and an optional virtual environment (
python -m venv .venvthen activate it). -
Install the shared dependencies declared in
pyproject.toml:pip install -e . -
If you prefer a global install, run the same command without creating a virtual environment.
-
Converts a single animated WEBP to MP4 while preserving frame timing.
python scripts/WEPB_to_video_converter.py -
A file picker appears; choose the source WEBP. The MP4 is written next to the selected file using the same base name.
-
Merges ordered screenshots into one image, keeping identical regions only once.
python scripts/ScreenStitch.py -
Select the screenshots in order when prompted. The output
stitch.pngis saved next to the first chosen image; the temporarystitchtmp/folder is removed automatically.
- Scripts are independent; run only what you need.
- Outputs are written alongside your inputs unless otherwise noted.
See LICENSE for terms.