diff --git a/pages/common/eyuvtoppm.md b/pages/common/eyuvtoppm.md new file mode 100644 index 0000000000..b2d75144a0 --- /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 0000000000..7d03eaa710 --- /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 0000000000..d64b00ea65 --- /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 0000000000..11db6ea6a3 --- /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 0000000000..002650c17a --- /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 0000000000..683df7400d --- /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}}`