PlanetKitVideoFps

@objc
@frozen
public enum PlanetKitVideoFps : Int
extension PlanetKitVideoFps: CustomStringConvertible

An enumeration representing the frames per second (FPS) options for the video.

  • The FPS is undefined.

    Declaration

    Swift

    case undefined = 0
  • The FPS is 5.

    Declaration

    Swift

    case fps5 = 5
  • The FPS is 10.

    Declaration

    Swift

    case fps10 = 10
  • The FPS is 15.

    Declaration

    Swift

    case fps15 = 15
  • The FPS is 24.

    Declaration

    Swift

    case fps24 = 24
  • The FPS is 30.

    Declaration

    Swift

    case fps30 = 30

CustomStringConvertible

  • Declaration

    Swift

    public var description: String { get }