QSoft.MediaCapture 1.0.0.7

dotnet add package QSoft.MediaCapture --version 1.0.0.7                
NuGet\Install-Package QSoft.MediaCapture -Version 1.0.0.7                
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.7" />                
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.7                
#r "nuget: QSoft.MediaCapture, 1.0.0.7"                
#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.7

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

Important hint

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

Quick start

var allcameras = QSoft.DevCon.DevConExtension.KSCATEGORY_VIDEO_CAMERA.DevicesFromInterface()
                    .Select(x => new
                    {
                        symbollink = x.DevicePath(),
                        panel = x.As().Panel()
                    });
var firstcamera = allcameras.FirstOrDefault();
if(firstcamera is null) return;
var camera = WebCam_MF.CreateFromSymbollink(firstcamera.symbollink);
await camera.InitCaptureEngine(new WebCam_MF_Setting()
    {
        IsMirror = firstcamera.panel==CameraPanel.Front
    });
await camera.StartPreview(host.Child.Handle);

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);
}

Preview for 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(bmp=>this.image.Source = bmp);
}

Take photo

support format

  • jpg
  • png
  • bmp
  • tif,tiff
var camera = QSoft.MediaCapture.WebCam_MF.GetAllWebCams()
    .Find(x => x.FriendName == "USB2.0 HD UVC WebCam");
if(camera != null)
{
    await camera.TakePhtot("123.jpg");
}

Record

Support format:

  • mp4
    • video: h264
    • audio: aac
  • wmv
    • video: h264
    • audio: aac
var camera = QSoft.MediaCapture.WebCam_MF.GetAllWebCams()
    .Find(x => x.FriendName == "USB2.0 HD UVC WebCam");
if(camera != null)
{
    await camera.StartRecord("123.mp4");
    await Task.Delay(5000);
    await camera.StopRecord();
}

WhiteBalance contorl

first check this device support this function after Init camera success

if (camera.WhiteBalanceControl.IsSupport)
{
    //can set predefined value
    camera.WhiteBalanceControl.Preset = ColorTemperaturePreset.Auto;
}

Flash

first check this device support this function after Init camera success

if(camera.FlashLight?.IsSupported)
{
    //Flash support function
    var supportfunc = camera.FlashLight.SupportStates;
    //below usually use state if camera supports flashlight
    camera.FlashLight.SetState(FlashState.OFF);
    camera.FlashLight.SetState(FlashState.ON);
    camera.FlashLight.SetState(FlashState.AUTO);
}

Flash and Torch

first check this device support this function after Init camera success

if(camera.TorchLight?.IsSupported)
{
    //Flash support function
    var supportfunc = camera.TorchLight.SupportStates;
    //below usually use state if camera supports torch light
    camera.TorchLight.SetState(FlashState.OFF);
    camera.TorchLight.SetState(FlashState.ON);
}

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.  net9.0-windows was computed. 
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  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.7 96 3/3/2025
1.0.0.6 116 2/3/2025
1.0.0.5 107 12/9/2024
1.0.0.4 133 6/13/2024
1.0.0.3 145 4/19/2024
1.0.0.2 115 4/18/2024
1.0.0.1 115 4/16/2024
1.0.0 140 4/10/2024

1. fix troch flashlist no init and use
2. fix whitebalance not work
3. new create instnace function(CreateFromSymbollink)