The clip API which can be used to clip the playback window of a source.

interface Clip {
    endTime: number;
    startTime: number;
    addEventListener<TType>(type, listener): void;
    removeEventListener<TType>(type, listener): void;
}

Hierarchy (view full)

Properties

endTime: number

The end time of the clip's window, in seconds.

startTime: number

The start time of the clip's window, in seconds.

Methods

Generated using TypeDoc