FulcrumFS FulcrumFS
FulcrumFS FulcrumFS
DocFX + Singulink = ♥

Search Results for

    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: newFps = originalFps / (originalFps \ targetFps); where '\' is integer division (rounded up, as opposed to the normal rounding of integer division). Or with '\' representing standard integer division rounding (floored): newFps = -originalFps / (-originalFps \ targetFps).

    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.

    © Singulink. All rights reserved.