MediaType

@objc
public enum MediaType : Int

MediaType is an enum that represent they type of media type, video, audio, subtitle or unknown

  • Declaration

    Swift

    case video = 0
  • Declaration

    Swift

    case audio = 1
  • Declaration

    Swift

    case subtitle = 2
  • Declaration

    Swift

    case unknown = 3