Interface VideoScene

A single scene / segment detected during video analysis.

interface VideoScene {
    startSec: number;
    endSec: number;
    description: string;
}

Properties

startSec: number

Start time of the scene in seconds.

endSec: number

End time of the scene in seconds.

description: string

Human-readable description of what happens in this scene.