Bitmovin Player React Native SDK - v1.6.0
    Preparing search index...

    Interface AndroidDateRangeMetadataEntry

    Represents in-playlist timed metadata from an HLS #EXT-X-DATERANGE tag.

    Android

    interface AndroidDateRangeMetadataEntry {
        attributes: Record<string, string>;
        classLabel?: string;
        duration?: number;
        endOnNext: boolean;
        id: string;
        metadataType: DATERANGE;
        plannedDuration?: number;
        platform: "android";
        relativeTimeRange: TimeRange<number>;
    }

    Hierarchy

    • BaseDateRangeMetadataEntry<"android">
      • AndroidDateRangeMetadataEntry
    Index

    Properties

    attributes: Record<string, string>

    All the attributes associated with the date range.

    "X-ASSET-URI": "https://www.example.com"
    
    classLabel?: string

    The class associated with the date range.

    duration?: number

    The declared duration of the range in seconds.

    endOnNext: boolean

    Indicates whether the date range ends at the start of the next date range with the same classLabel.

    id: string

    The unique identifier for the date range.

    metadataType: DATERANGE
    plannedDuration?: number

    The planned duration of the range in seconds.

    Used for live streams where the actual end time may not be known yet.

    platform: "android"

    Platform discriminator for TypeScript type narrowing.

    relativeTimeRange: TimeRange<number>

    Time range of the entry relative to the beginning of the playback, in seconds.