Represents a single playable cut in a cut.

interface Cut {
    black?: boolean;
    dropFrame?: boolean;
    end: number;
    frameRate?: FrameRate;
    src?: string;
    start: number;
}

Properties

black?: boolean

The cut represent black frames

dropFrame?: boolean

(default to original) If the clips timecode should use dropFrame timecode.

end: number

End of the clip in frames.

frameRate?: FrameRate

(default to original) The frame rate to use for clip.

src?: string

(default to original) The source to use for clip.

start: number

Start of the clip in frames.