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

    Interface CueExitEvent

    Emitted when an active subtitle entry transitions into the inactive status.

    interface CueExitEvent {
        end: number;
        html?: string;
        image?: string;
        layout?: SubtitleCueLayout;
        name: string;
        start: number;
        text?: string;
        timestamp: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    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.

    Android

    image?: string

    Data URI for image subtitle data.

    Normalized cue-box geometry.

    Android

    name: string

    This event name as it is on the native side.

    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.