Mixpeek Logo
    Schedule Demo
    Video

    Scene Detection

    Detect and classify scenes in video content

    Note: This playground provides simulated output to showcase functionality. No input data is processed or stored on our servers. Use this demo to explore the feature extractor's capabilities before integrating it into your application.

    Input

    Enter a URL to a video file

    Drag and drop a video file here, or click to browse

    The scene detection model to use. Default: scene-detector-v2

    Minimum confidence threshold for scene detection. Default: 0.6

    Whether to include alternative scene suggestions. Default: true

    Whether to include audio features. Default: true

    Output

    {
    "scenes": [
    {
    "type": "action",
    "start_time": 10.5,
    "end_time": 15.2,
    "attributes": {
    "action": "jump",
    "object": "chair"
    }
    },
    {
    "type": "object",
    "start_time": 20.3,
    "end_time": 25.7,
    "attributes": {
    "object": "ball",
    "color": "red"
    }
    }
    ]
    }