Enum VideoFpsMode
Defines modes for controlling the frames per second (FPS) of a video during processing.
Namespace: FulcrumFS.Videos
Assembly: FulcrumFS.Videos.dll
Syntax
public enum VideoFpsMode
Fields
| Name | Description |
|---|---|
| LimitByIntegerDivision | Limits the FPS by dividing the original FPS by an integer value - that is, if the original video has a higher FPS, it will be reduced to the original FPS divided by the smallest integer that is large enough to achieve the desired limit.
Note: this can be calculated by using integer division: |
| LimitToExact | Limits the FPS to an exact value - that is, if the original video has a higher FPS, it will be reduced to this exact value. |