Skip to content

video.scene_detect

Operation: video.scene_detect
Category: video
Tags: video, analysis, scene

Detect scene boundaries in a video

Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)

NameTypeRequiredDefaultDescription
video_pathStringYesPath to video file
NameTypeDescription
scenesJSONArray of {index, start, end} scene objects
scene_countNumberNumber of scenes detected
duration_secsNumberTotal video duration
{
"min_scene_len": 1.0,
"threshold": 0.3
}
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("video-scene-detect", "tool", (n) =>
n.config({
operation: "video.scene_detect",
// ... node-specific config
})
)
.build();