YUVProcessKit is a series of tools for processing YUV sequences, such as horizontal combiner, compare, connect, extract, scale and split and so on.
Windows, Linux, macOS(Apple Silicon)
【Codecs系列】YUV处理工具系列汇总: https://blog.csdn.net/SoaringLee_fighting/article/details/95807355
说明:当前支持下面6个功能。
YUV按照y,u,v三个分量顺序排列,支持YUV420P(I420 or YV12)采样格式。
Usage: combinerYUV.exe input1 input2 output width height
比较结果写入文件compare_result.txt中。
Usage: CompareYUV.exe yuv0 yuv1 width height
可以设置两个YUV文件的帧数,将两个YUV文件的三个分量顺序拼接,只支持YUV420P采样格式。
Usage: connectYUV.exe src2file src2file dstfile width height len1 len2
实现YUV文件剪切,可以设置开始帧和结束帧。
Usage: extractYUV.exe input.yuv width height startframe stopframe
实现YUV文件分割为两个子YUV,隔帧写入YUV,实现帧率扩倍功能。
Usage: splitYUV.exe srcyuv dstyuv1 dstyuv2 width height
实现YUV文件的缩放,插值算法可选择cublic立方插值和bilinear双线性插值。
Usage: <ScaleYUV.exe> <in file> <out file> <src width> <src height> <target width> <target height> <algorithm>
Algorithm list: 0--cubic, 1--bilinear
├── bin : 各平台的可执行文件
├── build : Linux平台和macOS平台编译脚本
├── LICENSE : License文件
├── Projects : YUV处理工具的windows平台vs2013工程
└── README.md : 本文件
-
v1.0(2020.7.1):
Feature:
1、YUV处理工具集:YUV水平拼接,YUV比较,YUV文件拼接,YUV文件剪切,YUV文件分割,YUV缩放。
2、YUV处理工具集支持Windows平台。 -
v1.1(2021.7.2)
Feature:
1、YUV处理工具集支持Linux平台和macOS平台。