ZeroVideo 1.2.0

dotnet add package ZeroVideo --version 1.2.0
                    
NuGet\Install-Package ZeroVideo -Version 1.2.0
                    
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="ZeroVideo" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ZeroVideo" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="ZeroVideo" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ZeroVideo --version 1.2.0
                    
#r "nuget: ZeroVideo, 1.2.0"
                    
#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.
#:package ZeroVideo@1.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ZeroVideo&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=ZeroVideo&version=1.2.0
                    
Install as a Cake Tool

ZeroVideo: Enterprise Pure C# Video Streaming, Transport & Multimedia Engine

ZeroPlatform Tier License: MIT .NET Multi-Targeting NuGet Version

ZeroVideo is a sovereign, high-performance, pure C# video streaming, camera network transport, and multimedia playback engine for .NET. Completely free from heavyweight native C++ bindings (no FFmpeg or VLC unmanaged binaries required), it provides low-latency RTSP/RTP/H.264 stream ingestion, industrial Motion JPEG (MJPEG) streaming, lossless bitmap snapshot generation, strided multi-format video frame buffers, fast BT.601 color conversions, and clock-synchronized video playback.

Operating as a core member of Tier 3 (Perception & Intelligence) within the ZeroPlatform ecosystem.


🏛️ Ecosystem Architectural Alignment

  • Architectural Tier: Tier 3 (Perception & Intelligence)
  • Permitted Upstream Dependencies: Tier 0 (ZeroPrimitives, ZeroConcurrency, ZeroSecurity), Tier 1 (ZeroCompute, ZeroTensor), Tier 2 (ZeroNetwork)
  • Downstream Consumers: Tier 4 (ZeroGraphics), Tier 5 (ZeroPipeline, ZeroUI)
  • Core Guarantees: Pure C# execution, Zero Large Object Heap (LOH) GC allocations on hot streaming loops, zero unmanaged runtime binary dependencies.

Key Features

  • Zero-LOH Frame Memory Pool (VideoFramePool, PooledVideoFrameBuffer):
    • High-throughput buffer pooling using ArrayPool<byte>.Shared to eliminate Large Object Heap (LOH) GC pauses during continuous high-FPS streaming.
    • Implements IDisposable with zero-allocation span accessors (AsSpan, AsReadOnlySpan, GetRowSpan).
  • Industrial Motion JPEG Multipart Client (MjpegClient):
    • Ingests standard multipart/x-mixed-replace HTTP video streams from industrial IP cameras (Basler, FLIR, Axis, Hikvision, ESP32-CAM, OctoPrint) with zero external libraries.
    • Non-blocking asynchronous reading loop (ReadAsync) with fault-tolerant JPEG SOI (0xFF, 0xD8) and EOI (0xFF, 0xD9) marker search.
    • Event-driven frame dispatching (FrameReceived).
  • Lossless Snapshot BMP Exporter (SnapshotExporter):
    • Pure C# Windows Bitmap (.bmp) generator without GDI+ or System.Drawing dependencies.
    • Full support for 8-bit Gray8 (with 256-color grayscale palette), 24-bit BGR/RGB, 32-bit BGRA/RGBA, and planar YUV420P/NV12.
  • Strided Video Frame Buffer (VideoFrameBuffer):
    • Low-latency pixel memory wrapping supporting Gray8, RGB24, BGR24, RGBA32, BGRA32, NV12, and YUV420P with nanosecond presentation timestamps (PTS).
  • RTSP 1.0 Client Transport (RtspClient):
    • Pure C# session negotiation (OPTIONS, DESCRIBE, SETUP, PLAY, PAUSE, TEARDOWN) with SDP video track parsing for IP security and industrial cameras.
  • RFC 3550 RTP Stream Demuxing (RtpPacket):
    • Fast binary packet header parsing and serialization with SSRC and sequence number tracking.
  • H.264 AVC NAL Unit Scanner (H264NaluParser):
    • Annex B start code detection (0x000001 / 0x00000001) and parameter set (SPS/PPS) extraction.
  • RFC 6184 FU-A Reassembly with Packet Loss Guard (H264FuAReassembler):
    • Seamless reassembly of fragmented NAL units across RTP packet boundaries using reusable assembly memory and sequence number continuity validation to discard corrupted frames.
  • H.264 SPS Bitstream Metadata Parser (H264SpsParser):
    • Pure C# Exp-Golomb bitstream decoder extracting video dimensions (width, height), profile, and level from raw Sequence Parameter Sets without external decoders.
  • Fixed-Point BT.601 Color Conversion (ColorConverter):
    • Integer-scaled conversion from YUV420P and NV12 to packed RGB24 and BGR24 with 2x horizontal chrominance calculation reuse and aggressive inlining.
  • Master Playback Clock & Backpressured Player (VideoClock, VideoPlayer):
    • Drift-free PTS synchronization, bounded queue backpressure control (MaxQueueCapacity, FrameDropStrategy.DropOldest), variable playback rate, seeking, and forensic frame stepping.

Multi-Targeting

  • .NET 8.0+
  • .NET Framework 4.6.2+
  • .NET Standard 2.0

License

MIT License. Copyright © 2026 Phong Võ (kzxl).

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ZeroVideo:

Package Downloads
ZeroAudioVisual

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.0 63 9/22/2026
1.1.0 43 9/22/2026