QSoft.MediaCapture 1.0.0.3

dotnet add package QSoft.MediaCapture --version 1.0.0.3
NuGet\Install-Package QSoft.MediaCapture -Version 1.0.0.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="QSoft.MediaCapture" Version="1.0.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add QSoft.MediaCapture --version 1.0.0.3
#r "nuget: QSoft.MediaCapture, 1.0.0.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.
// Install QSoft.MediaCapture as a Cake Addin
#addin nuget:?package=QSoft.MediaCapture&version=1.0.0.3

// Install QSoft.MediaCapture as a Cake Tool
#tool nuget:?package=QSoft.MediaCapture&version=1.0.0.3

Important hint

if submodule Direct or DirectCore show new version, please don't update

Quick start

Search all video capture

foreach(var oo in QSoft.MediaCapture.WebCam_MF.GetAllWebCams())
{
    System.Diagnostics.Trace.WriteLine(oo.FriendName);
    System.Diagnostics.Trace.WriteLine(oo.SymbolLinkName);
}

and filter FriendName, SymbolLinkName get it

Init and start preview

var camera = QSoft.MediaCapture.WebCam_MF.GetAllWebCams().Find(x => x.FriendName == "USB2.0 HD UVC WebCam");
if(camera != null)
{
    await camera.InitCaptureEngine();
    await camera.SetPreviewSize(x => x.FirstOrDefault(y=>y.Width>=640));
    await camera.StartPreview(host.Child.Handle);
}

try below code when use WPF

var camera = QSoft.MediaCapture.WebCam_MF.GetAllWebCams().Find(x => x.FriendName == "USB2.0 HD UVC WebCam");
if(camera != null)
{
    await camera.InitCaptureEngine();
    await camera.SetPreviewSize(x => x.FirstOrDefault(y=>y.Width>=640));
    await camera.StartPreview(x => this.image.Source = x);
}

open multi camera same time in WPF

var aa = QSoft.MediaCapture.WebCam_MF.GetAllWebCams()
    .Select(async (camera, i) =>
    {
        await Task.Run(async () =>
        {
            await camera.InitCaptureEngine();
            //await camera.SetPreviewSize(x => x.ElementAt(1));
            await camera.StartPreview(x =>
            {
                this.Dispatcher.Invoke(() =>
                {
                    this.image.Source = x;
                });

            });
        });

    }).ToArray();

await Task.WhenAll(aa);

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed.  net8.0-windows7.0 is compatible. 
.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.

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.0.0.3 82 4/19/2024
1.0.0.2 70 4/18/2024
1.0.0.1 68 4/16/2024
1.0.0 70 4/10/2024

1. fix startpreview in task issue