mirror of https://github.com/CrimsonTome/tldr.git
eyuvtoppm, ppmtoeyuv, ppmtoyuv, ppmtoyufsplitm, yuvsplittoppm, yuvtoppm: add pages (#11380)
parent
6bfbb2136f
commit
96a6099652
|
@ -0,0 +1,8 @@
|
||||||
|
# eyuvtoppm
|
||||||
|
|
||||||
|
> Convert a Berkeley YUV file to PPM.
|
||||||
|
> More information: <https://netpbm.sourceforge.net/doc/eyuvtoppm.html>.
|
||||||
|
|
||||||
|
- 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}}`
|
|
@ -0,0 +1,8 @@
|
||||||
|
# ppmtoeyuv
|
||||||
|
|
||||||
|
> Convert a PPM image to an Berkeley YUV file.
|
||||||
|
> More information: <https://netpbm.sourceforge.net/doc/ppmtoeyuv.html>.
|
||||||
|
|
||||||
|
- 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}}`
|
|
@ -0,0 +1,8 @@
|
||||||
|
# ppmtoyuv
|
||||||
|
|
||||||
|
> Convert a PPM image to an Abekas YUV file.
|
||||||
|
> More information: <https://netpbm.sourceforge.net/doc/ppmtoyuv.html>.
|
||||||
|
|
||||||
|
- 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}}`
|
|
@ -0,0 +1,8 @@
|
||||||
|
# ppmtoyuvsplit
|
||||||
|
|
||||||
|
> Convert a PPM image to three subsampled Abekas YUV files.
|
||||||
|
> More information: <https://netpbm.sourceforge.net/doc/ppmtoyuvsplit.html>.
|
||||||
|
|
||||||
|
- 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}}`
|
|
@ -0,0 +1,8 @@
|
||||||
|
# yuvsplittoppm
|
||||||
|
|
||||||
|
> Convert three subsampled Abekas YUV files to one PPM image.
|
||||||
|
> More information: <https://netpbm.sourceforge.net/doc/yuvsplittoppm.html>.
|
||||||
|
|
||||||
|
- 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}}`
|
|
@ -0,0 +1,8 @@
|
||||||
|
# yuvtoppm
|
||||||
|
|
||||||
|
> Convert Abekas YUV bytes to PPM.
|
||||||
|
> More information: <https://netpbm.sourceforge.net/doc/yuvtoppm.html>.
|
||||||
|
|
||||||
|
- 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}}`
|
Loading…
Reference in New Issue