Property VLCapture.TVLCapture.FramesPerSecond
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLCapture
Contents |
Syntax
Delphi:
property FramesPerSecond : Integer read FFramesPerSecond write SetFramesPerSecond default 15;
C++ Builder:
__property int FramesPerSecond = { read=FFramesPerSecond, write=SetFramesPerSecond, default=15 };
Summary
The desired frame rate of the capture.
Description
Use this property to specify If the driver doesn't support
the requested frame rate, it will attempt to use the closest
one being supported.
Delphi example:
VLCapture1.FramesPerSecond := 50;
C++ Builder example:
VLCapture1->FramesPerSecond = 50;
Visual C++(MFC) example:
VLCapture1.FramesPerSecond = 50;
Visual C++/CLI example:
capture1->FramesPerSecond = 50;
C# example:
capture1.FramesPerSecond = 50;
VB example:
Capture1.FramesPerSecond = 50