Class PushSourceSettings
- Namespace
- VisioForge.Core.Types.VideoCapture
- Assembly
- VisioForge.Core.dll
Push source settings.
public class PushSourceSettingsInheritance
Inherited Members
Remarks
This class defines the video format settings for push-based video sources, where frames are actively pushed into the capture pipeline rather than being pulled from a device or file. This is commonly used for custom video sources or when integrating with external video generation systems.
Constructors
PushSourceSettings()
Initializes a new instance of the VisioForge.Core.Types.VideoCapture.PushSourceSettings class.
public PushSourceSettings()Remarks
Creates a new push source configuration with default settings: 640x480 resolution at 25 fps.
Properties
VideoFrameRate
Gets or sets video frame rate.
public VideoFrameRate VideoFrameRate { get; set; }Property Value
VideoHeight
Gets or sets video height.
public int VideoHeight { get; set; }Property Value
VideoWidth
Gets or sets video width.
public int VideoWidth { get; set; }