LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

ppmtoeyuv

Convert PPM to Berkeley Encoder YUV format

TLDR

Convert a PPM image to EYUV format
$ ppmtoeyuv [input.ppm] > [output.eyuv]
copy
Convert from stdin
$ cat [input.ppm] | ppmtoeyuv > [output.eyuv]
copy

SYNOPSIS

ppmtoeyuv [ppmfile]

DESCRIPTION

ppmtoeyuv converts a PPM image to Berkeley Encoder YUV (EYUV) format, which is used by MPEG encoders. Reads from a file argument or standard input. Output is written to standard output. Part of the Netpbm toolkit.

INSTALL

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

SEE ALSO

Copied to clipboard
Kai