RPE Chart Utils
    Preparing search index...

    Interface Video

    A video background entry in extra.json.

    • path — file path to the video asset (required).
    • time — start beat in RPE beat format.
    • scale — scaling mode: cropCenter (fill), inside (fit), fit (stretch).
    • alpha — opacity (animated variable or constant, 0–1).
    • dim — dimming amount (animated variable or constant, 0–1).
    interface Video {
        path: string;
        time: [number, number, number];
        startTimeSec?: number;
        endTimeSec?: number;
        scale: "cropCenter" | "inside" | "fit";
        alpha: number | AnimatedVariable;
        dim: number | AnimatedVariable;
        zIndex?: number;
        attach?: VideoAttach;
    }
    Index

    Properties

    path: string
    time: [number, number, number]
    startTimeSec?: number
    endTimeSec?: number
    scale: "cropCenter" | "inside" | "fit"
    alpha: number | AnimatedVariable
    dim: number | AnimatedVariable
    zIndex?: number
    attach?: VideoAttach