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

    Interface CueEnterEvent

    Emitted when a subtitle entry transitions into the active status.

    interface CueEnterEvent {
        cea608Position?: Cea608CuePosition;
        end: number;
        html?: string;
        image?: string;
        layout?: SubtitleCueLayout;
        name: string;
        region?: SubtitleCueRegion;
        start: number;
        text?: string;
        timestamp: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cea608Position?: Cea608CuePosition

    CEA-608 grid position for closed captions.

    iOS, tvOS

    end: number

    The playback time in seconds when the subtitle should be hidden.

    html?: string

    HTML cue text, which may include styling generated by the native SDK.

    Treat as renderer input, not plain text.

    image?: string

    Data URI for image subtitle data.

    Cue-box geometry.

    Present only when at least one concrete layout field is available from native cue data.

    name: string

    This event name as it is on the native side.

    Native cue region metadata.

    Forwarded only when the native SDK provides it. Built-in iOS/tvOS WebVTT parsing does not populate this field currently.

    iOS, tvOS

    start: number

    The playback time in seconds when the subtitle should be rendered.

    text?: string

    Plain-text content of this subtitle.

    timestamp: number

    The UNIX timestamp in which this event happened.