LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

ppmfade

Create fade transition between images

TLDR

Create fade transition
$ ppmfade -f [first.ppm] -l [last.ppm]
copy
Fade to black
$ ppmfade -f [image.ppm] -mode black
copy
Specify frame count
$ ppmfade -f [first.ppm] -l [last.ppm] -frames [30]
copy

SYNOPSIS

ppmfade [options]

DESCRIPTION

ppmfade generates a sequence of PPM frames that create a fade transition between two images. The output is a series of numbered files that can be assembled into an animation or video sequence.Multiple fade modes are available, including crossfade between two images, fade to black, and fade to white. The number of intermediate frames controls the transition speed and smoothness. Part of the Netpbm toolkit.

PARAMETERS

-f FILE

First image.
-l FILE
Last image.
-frames N
Number of frames.
-mode MODE
Fade mode (mix, black, etc.).
-base NAME
Output filename base.

INSTALL

sudo apt install netpbm
copy
sudo dnf install netpbm
copy
sudo pacman -S netpbm
copy
sudo apk add netpbm-extras
copy
sudo zypper install netpbm
copy
brew install netpbm
copy
nix profile install nixpkgs#netpbm
copy

CAVEATS

Creates numbered output files. Part of Netpbm suite.

HISTORY

ppmfade was created as part of Netpbm for video fade effects.

SEE ALSO

ppmmix(1), ppmmorph(1), ppm(5)

Copied to clipboard
Kai