PlayerStatus

public enum PlayerStatus : UInt32

Enum describing all possible status of a player

  • Player currently has no media

    Declaration

    Swift

    case noMedia = 0
  • Player is preparing media for playback

    Declaration

    Swift

    case preparingMedia
  • Player is ready to play media

    Declaration

    Swift

    case readyToPlay
  • Player is playing media

    Declaration

    Swift

    case playing
  • Player playback is paused

    Declaration

    Swift

    case paused
  • Player is seeking

    Declaration

    Swift

    case seeking
  • Player playback has finished

    Declaration

    Swift

    case finished
  • Player has an error

    Declaration

    Swift

    case error
  • Returns a string representation of the status

    Declaration

    Swift

    public var stringValue: String { get }