FPFlowplayerState

@objc
public enum FPFlowplayerState : Int

Flowplayer’s playback state.

  • The player does not have any media to play.

    Declaration

    Swift

    case idle = 0
  • The player is not able to immediately play from its current position. This state typically occurs when more data needs to be loaded.

    Declaration

    Swift

    case buffering = 1
  • The player is currently playing.

    Declaration

    Swift

    case playing = 2
  • The player is able to immediately play from its current position and will start/resume playing as soon as [play] is called.

    Declaration

    Swift

    case paused = 3
  • The player has finished playing the media.

    Declaration

    Swift

    case completed = 4