JWTrackType

@objc
public enum JWTrackType : Int
extension JWTrackType: CustomStringConvertible

Constants denoting the type of JWTrack.

  • Track type is undefined. This is used in case of an error.

    Declaration

    Swift

    case undefined = -1
  • Track is audio.

    Declaration

    Swift

    case audio
  • Track is closed captions.

    Declaration

    Swift

    case closedCaption
  • Track is subtitles.

    Declaration

    Swift

    case subtitle
  • Declaration

    Swift

    public var description: String { get }