QSoft.MediaCapture
1.0.0.7
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Framework 4.6
This package targets .NET Framework 4.6. The package is compatible with this framework or higher.
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Important hint
if submodule Direct or DirectCore show new version, please don't update
Quick start
Create from symbolLink
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 | Versions 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.
-
.NETFramework 4.6
- DirectN (>= 1.17.2)
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.7.2
- DirectN (>= 1.17.2)
-
net6.0-windows7.0
- DirectNCore (>= 1.17.2)
-
net8.0-windows7.0
- DirectNCore (>= 1.17.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1. fix troch flashlist no init and use
2. fix whitebalance not work
3. new create instnace function(CreateFromSymbollink)