@byomakase/omakase-player
    Preparing search index...

    Interface MarkerLaneConfig

    interface MarkerLaneConfig {
        axiosConfig?: AxiosRequestConfig<any>;
        description?: string;
        downsamplePeriod?: number;
        downsampleStrategy?: DownsampleStrategy;
        id?: string;
        layoutEasingDuration?: number;
        loadingAnimationEnabled?: boolean;
        markerCreateFn?: (marker: MarkerVttCue, index: number) => Marker;
        markerProcessFn?: (marker: Marker, index: number) => void;
        minimized?: boolean;
        style: MarkerLaneStyle;
        vttFile?: MarkerVttFile;
        vttUrl?: string;
    }

    Hierarchy

    Index

    Properties

    axiosConfig?: AxiosRequestConfig<any>
    description?: string
    downsamplePeriod?: number

    Period for downsampling in milliseconds

    downsampleStrategy?: DownsampleStrategy

    Strategy for downsampling (supported values: none, drop, min, max, and avg)

    id?: string
    layoutEasingDuration?: number
    loadingAnimationEnabled?: boolean
    markerCreateFn?: (marker: MarkerVttCue, index: number) => Marker
    markerProcessFn?: (marker: Marker, index: number) => void
    minimized?: boolean
    vttFile?: MarkerVttFile
    vttUrl?: string