Viscomsoft .Net Video Capture SDK

VideoResolution.MinFrameRate Property 

 

Returns the maximum supported frame rate.

VideoResolutions.VideoResolution.MaxFrameRate[=integer]

Parameter
the value of maximum frame rate.

Namespace: Viscomsoft.VideoCapture

Remark
This property is Read.

Example

   

[c# Syntax] 
  public VideoCapture _capture =  new VideoCapture();
  public Devices _devices = new Devices();
  
  _capture.Initialize();
  _devices.Refresh();
  _capture.Window = pictureBox1.Handle;
  _capture.Mode = VideoCapture.CaptureMode.Preview;
  _capture.VideoDevice = _devices.VideoDevices[0];
  _capture.VideoDevice.SelectedResolution = _capture.VideoDevice.VideoResolutions[0];
   for (int i = videoresolution.MinFrameRate; i <= videoresolution.MaxFrameRate; i++)
    cboframerate.Items.Add(i);

   AudioDevice myAudioDevice = _devices.AudioDevices[0];
   _capture.AudioDevice = myAudioDevice;
    
   int result= _capture.Start();