DVRMetadata

@objc(AASDKDVRMetadata)
public class DVRMetadata : NSObject, Codable

Metadata for DVR-enabled streams

  • Start UNIX timestamp for the DVR stream

    Declaration

    Swift

    @objc
    public var start: Int
  • end

    Latest UNIX timestamp for the DVR stream

    Declaration

    Swift

    @objc
    public var end: Int
  • Length of the DVR buffer

    Declaration

    Swift

    @objc
    public var length: Int
  • The list of metadata for the DVR stream

    Declaration

    Swift

    @objc
    public var metadata: [MetadataItem]
  • Declaration

    Swift

    required public init(from decoder: Decoder) throws
  • Defines a metadata item from the metadata array in DVRMetadata data class.

    See more

    Declaration

    Swift

    @objc
    public class MetadataItem : NSObject, Codable