BMPScteMetadata

Objective-C


@interface BMPScteMetadata : BMPMetadata

Swift

class ScteMetadata : Metadata

Represents the SCTE-35 metadata from the media playlist.

  • Indicates the start time of the metadata in seconds

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSTimeInterval startTime;

    Swift

    var startTime: TimeInterval { get }
  • Initializes an instance of BMPScteMetadata with a collection of metadata entries.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithEntries:
                                (nonnull NSArray<id<BMPMetadataEntry>> *)entries
                                  startTime:(NSTimeInterval)startTime;

    Swift

    init(entries: [BMPMetadataEntry], startTime: TimeInterval)

    Parameters

    entries

    An NSArray of BMPMetadataEntry.

    startTime

    The start time of the SCTE Metadata.

    Return Value

    An instance of BMPScteMetadata.