Mixpeek Logo
    Schedule Demo
    Video

    Event Detection

    Detect and classify significant events in video

    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 event detection model to use. Default: event-detector-v2

    Minimum confidence threshold for event detection. Default: 0.7

    Specific event types to detect. Default:

    Whether to include event context. Default: true

    Output

    {
    "events": [
    {
    "type": "goal_scored",
    "time": 34.5,
    "confidence": 0.97,
    "participants": [
    "player_7",
    "team_A"
    ],
    "description": "Player 7 scores goal for Team A"
    },
    {
    "type": "celebration",
    "time": 35.2,
    "confidence": 0.94,
    "participants": [
    "team_A"
    ],
    "description": "Team A celebrates goal"
    }
    ],
    "context": "soccer_match",
    "total_events": 2
    }