QSoft.YUV
1.0.0.1
dotnet add package QSoft.YUV --version 1.0.0.1
NuGet\Install-Package QSoft.YUV -Version 1.0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="QSoft.YUV" Version="1.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add QSoft.YUV --version 1.0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: QSoft.YUV, 1.0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install QSoft.YUV as a Cake Addin #addin nuget:?package=QSoft.YUV&version=1.0.0.1 // Install QSoft.YUV as a Cake Tool #tool nuget:?package=QSoft.YUV&version=1.0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
QSoft.YUV
- yuv444p to rgb24
byte[] yuv444p_raw = File.ReadAllBytes("s1-yuv444p.yuv");
var yuv444p = new QSoft.YUV.YUV444P(yuv444p_raw, 6000,3376);
refrence data
ffmpeg support pixel format
ffmpeg -pix_fmts
- jpg to yuy2
ffmpeg -i 720-404-yuy2.jpg -pix_fmt yuyv422 .\a.yuv
- jpg to yuv444p
ffmpeg -i 720-404-yuy2.jpg -pix_fmt yuv444p 720-404-yuv444p.yuv
- jpg to yuv420p
ffmpeg -i 720-404-yuy2.jpg -pix_fmt yuv420p .\720-404-yuv420p.yuv
- jpg to nv12(yuv420sp)
ffmpeg -i 720-404-yuy2.jpg -pix_fmt nv12 720-404-nv12.yuv
- jpg to rgb24
ffmpeg -i 720-404-yuy2.jpg -pix_fmt rgb24 .\720-404-rgb24.rgb
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.7.2
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1. speed up yuv444p to RGB24