Linux command
eyuvtoppm 命令
文本
涉及管道、覆盖或删除,执行前请先确认路径和参数。
常用示例
Convert EYUV to PPM
eyuvtoppm -w [width] -h [height] < [input.eyuv] > [output.ppm]
说明
eyuvtoppm converts Encoder YUV (EYUV) video format files to PPM (Portable Pixmap) format. EYUV is a Berkeley YUV format used in video encoding workflows, storing uncompressed YUV color space data. The tool is part of the Netpbm suite of image processing utilities. It requires explicit width and height parameters since EYUV files don't contain image dimension metadata. The output PPM format is a simple, uncompressed format widely supported for image manipulation and conversion.
参数
- -w _width_
- Image width.
- -h _height_
- Image height.
FAQ
What is the eyuvtoppm command used for?
eyuvtoppm converts Encoder YUV (EYUV) video format files to PPM (Portable Pixmap) format. EYUV is a Berkeley YUV format used in video encoding workflows, storing uncompressed YUV color space data. The tool is part of the Netpbm suite of image processing utilities. It requires explicit width and height parameters since EYUV files don't contain image dimension metadata. The output PPM format is a simple, uncompressed format widely supported for image manipulation and conversion.
How do I run a basic eyuvtoppm example?
Run `eyuvtoppm -w [width] -h [height] < [input.eyuv] > [output.ppm]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -w _width_ do in eyuvtoppm?
Image width.