Table of Contents

Class PushSourceSettings

Namespace
VisioForge.Core.Types.VideoCapture
Assembly
VisioForge.Core.dll

Push source settings.

public class PushSourceSettings

Inheritance

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

VideoFrameRate

VideoHeight

Gets or sets video height.

public int VideoHeight { get; set; }

Property Value

int

VideoWidth

Gets or sets video width.

public int VideoWidth { get; set; }

Property Value

int