AtcSoft.VideoSurveillance.Wpf.Core 1.2.3

dotnet add package AtcSoft.VideoSurveillance.Wpf.Core --version 1.2.3
                    
NuGet\Install-Package AtcSoft.VideoSurveillance.Wpf.Core -Version 1.2.3
                    
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="AtcSoft.VideoSurveillance.Wpf.Core" Version="1.2.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AtcSoft.VideoSurveillance.Wpf.Core" Version="1.2.3" />
                    
Directory.Packages.props
<PackageReference Include="AtcSoft.VideoSurveillance.Wpf.Core" />
                    
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 AtcSoft.VideoSurveillance.Wpf.Core --version 1.2.3
                    
#r "nuget: AtcSoft.VideoSurveillance.Wpf.Core, 1.2.3"
                    
#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 AtcSoft.VideoSurveillance.Wpf.Core@1.2.3
                    
#: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=AtcSoft.VideoSurveillance.Wpf.Core&version=1.2.3
                    
Install as a Cake Addin
#tool nuget:?package=AtcSoft.VideoSurveillance.Wpf.Core&version=1.2.3
                    
Install as a Cake Tool

AtcSoft.VideoSurveillance.Wpf.Core

WPF controls for showing live camera streams: CameraTile, CameraGrid and CameraOverlay.

This is the entry point for embedding cameras in your own WPF application. The other AtcSoft.* packages come along as dependencies.

Target framework: net10.0-windows10.0.19041.0.

Usage

Declare a tile in XAML:

<Window xmlns:cameras="clr-namespace:AtcSoft.VideoSurveillance.Wpf.Core.UserControls;assembly=AtcSoft.VideoSurveillance.Wpf.Core">
    <cameras:CameraTile x:Name="Tile" />
</Window>

Then give it a player factory and a camera:

// Once at startup. Point FFmpegPath at the folder holding the native FFmpeg DLLs.
VideoEngineBootstrap.Initialize(new VideoEngineConfig { FFmpegPath = ffmpegFolder });

Tile.InitializeServices(
    recordingService: null,
    motionDetectionService: null,
    videoPlayerFactory: new VideoPlayerFactory(loggerFactory));

Tile.Camera = camera;   // AtcSoft.VideoSurveillance.Models.CameraConfiguration

InitializeServices must be called before the tile will play anything — without a player factory it stays Disconnected. Recording, motion detection, timelapse and toast notifications are all optional; pass null for the ones you don't want.

FFmpeg is not included

This package does not ship the FFmpeg native libraries. Your application must deploy FFmpeg 8.x shared builds (avutil-60.dll and friends) and point VideoEngineConfig.FFmpegPath at them. A different major version fails at runtime with Library avutil.60* not found.

Product Compatible and additional computed target framework versions.
.NET net10.0-windows10.0.19041 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.3 51 9/22/2026
1.2.2 54 9/22/2026
1.2.1 45 9/22/2026