Mixpeek Logo
    Schedule Demo
    Video

    Action Recognition

    Identify and classify human actions 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 action recognition model to use. Default: action-recognizer-v2

    Minimum confidence threshold for action recognition. Default: 0.6

    Whether to include temporal information. Default: true

    Maximum number of actions to detect per frame. Default: 5

    Output

    {
    "actions": [
    {
    "label": "running",
    "start_time": 2.5,
    "end_time": 8.2,
    "confidence": 0.96
    },
    {
    "label": "jumping",
    "start_time": 12.3,
    "end_time": 14.8,
    "confidence": 0.88
    },
    {
    "label": "waving",
    "start_time": 18.5,
    "end_time": 21.2,
    "confidence": 0.92
    }
    ],
    "dominant_action": "running",
    "activity_density": "high"
    }