From 96a6099652e8c959c1218fe889207b37274ab154 Mon Sep 17 00:00:00 2001 From: Juri Dispan Date: Sat, 4 Nov 2023 15:15:25 +0100 Subject: [PATCH] eyuvtoppm, ppmtoeyuv, ppmtoyuv, ppmtoyufsplitm, yuvsplittoppm, yuvtoppm: add pages (#11380) --- pages/common/eyuvtoppm.md | 8 ++++++++ pages/common/ppmtoeyuv.md | 8 ++++++++ pages/common/ppmtoyuv.md | 8 ++++++++ pages/common/ppmtoyuvsplit.md | 8 ++++++++ pages/common/yuvsplittoppm.md | 8 ++++++++ pages/common/yuvtoppm.md | 8 ++++++++ 6 files changed, 48 insertions(+) create mode 100644 pages/common/eyuvtoppm.md create mode 100644 pages/common/ppmtoeyuv.md create mode 100644 pages/common/ppmtoyuv.md create mode 100644 pages/common/ppmtoyuvsplit.md create mode 100644 pages/common/yuvsplittoppm.md create mode 100644 pages/common/yuvtoppm.md diff --git a/pages/common/eyuvtoppm.md b/pages/common/eyuvtoppm.md new file mode 100644 index 000000000..b2d75144a --- /dev/null +++ b/pages/common/eyuvtoppm.md @@ -0,0 +1,8 @@ +# eyuvtoppm + +> Convert a Berkeley YUV file to PPM. +> More information: . + +- Read a Berkeley YUV file from the specified input file, convert it to a PPM image and store it in the specified output file: + +`eyuvtoppm --width {{width}} --height {{height}} {{path/to/input_file.eyuv}} > {{path/to/output_file.ppm}}` diff --git a/pages/common/ppmtoeyuv.md b/pages/common/ppmtoeyuv.md new file mode 100644 index 000000000..7d03eaa71 --- /dev/null +++ b/pages/common/ppmtoeyuv.md @@ -0,0 +1,8 @@ +# ppmtoeyuv + +> Convert a PPM image to an Berkeley YUV file. +> More information: . + +- Read a PPM image from the input file, convert it to a Berkeley YUV image and store it in the specified output file: + +`ppmtoeyuv {{path/to/input_file.ppm}} > {{path/to/output_file.eyuv}}` diff --git a/pages/common/ppmtoyuv.md b/pages/common/ppmtoyuv.md new file mode 100644 index 000000000..d64b00ea6 --- /dev/null +++ b/pages/common/ppmtoyuv.md @@ -0,0 +1,8 @@ +# ppmtoyuv + +> Convert a PPM image to an Abekas YUV file. +> More information: . + +- Read a PPM image from the input file, convert it to an Abekas YUV image and store it in the specified output file: + +`ppmtoyuv {{path/to/input_file.ppm}} > {{path/to/output_file.yuv}}` diff --git a/pages/common/ppmtoyuvsplit.md b/pages/common/ppmtoyuvsplit.md new file mode 100644 index 000000000..11db6ea6a --- /dev/null +++ b/pages/common/ppmtoyuvsplit.md @@ -0,0 +1,8 @@ +# ppmtoyuvsplit + +> Convert a PPM image to three subsampled Abekas YUV files. +> More information: . + +- Read a PPM image from the input file, convert it to three subsampled Abekas YUV image and store these images to output files starting with the specified basename: + +`ppmtoyuvsplit {{basename}} {{path/to/input_file.ppm}}` diff --git a/pages/common/yuvsplittoppm.md b/pages/common/yuvsplittoppm.md new file mode 100644 index 000000000..002650c17 --- /dev/null +++ b/pages/common/yuvsplittoppm.md @@ -0,0 +1,8 @@ +# yuvsplittoppm + +> Convert three subsampled Abekas YUV files to one PPM image. +> More information: . + +- Read Akebas YUV bytes from three files starting with basename, merge them into a single PPM image and store it in the specified output file: + +`yuvsplittoppm {{basename}} {{width}} {{height}} > {{path/to/output_file.ppm}}` diff --git a/pages/common/yuvtoppm.md b/pages/common/yuvtoppm.md new file mode 100644 index 000000000..683df7400 --- /dev/null +++ b/pages/common/yuvtoppm.md @@ -0,0 +1,8 @@ +# yuvtoppm + +> Convert Abekas YUV bytes to PPM. +> More information: . + +- Read Akebas YUV bytes from the specified input file, convert them to a PPM image and store them in the specified output file: + +`yuvtoppm {{width}} {{height}} {{path/to/input_file.yuv}} > {{path/to/output_file.ppm}}`