Feature Extractors
Scene Splitting
Automatically detect and split scenes by configuration
The Scene Splitting extractor accepts a video input and returns multiple documents split by silence
, scene
or time
.
Overview
The Scene Splitting feature extractor analyzes video content to detect and segment distinct scenes based on visual changes. It breaks down videos into logical segments that can be processed and searched independently.
Required Inputs
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
video_url | string | Yes | - | URL pointing to the video file to be processed. Supported formats: MP4, MOV, AVI |
min_scene_duration | float | No | 1.0 | Minimum duration (in seconds) for a scene segment |
threshold | float | No | 0.3 | Sensitivity threshold for scene change detection (0.0-1.0) |
Configurations
Split Types
When processing video content, the extractor supports three different split methods:
Split Type | Description | Common Use Cases |
---|---|---|
scene | Splits video based on visual content changes | Content analysis, scene detection |
silence | Splits video at periods of audio silence | Speech segmentation, presentation slides |
time | Splits video at fixed time intervals | Regular sampling, uniform segments |
Configuration Examples
Scene-based
Silence-based
Time-based
Base Configuration
Option | Type | Default | Description |
---|---|---|---|
min_scene_length | float | 2.0 | Minimum scene duration in seconds |
max_scene_length | float | 120.0 | Maximum scene duration in seconds (will force-split longer scenes) |
Configuration Examples
Sample
Processing Flow
Output Schema
This feature extractor will output as multiple documents
.
Was this page helpful?