Interface SegmentTimelineTypeSType

Represents a single timeline segment in a DASH presentation's segment timeline.

interface SegmentTimelineTypeSType {
    d: number;
    n?: number;
    r: number;
    t?: number;
}

Properties

d n? r t?

Properties

d: number

The duration of the segment, in timescale units.

n?: number

The sequence number of the segment, optional and used if segments are numbered.

r: number

The repeat count for the segment. This value is zero-based (e.g. a value of three means four Segments in the contiguous series.)

t?: number

The start time of the segment, in timescale units.