Mixpeek Logo
    Schedule Demo
    Video

    Sound Event Detection

    Identify and locate specific sound events in audio recordings

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

    Minimum confidence threshold for event detection. Default: 0.5

    Output

    {
    "events": [
    {
    "label": "door_knock",
    "start": 5.2,
    "end": 6.1,
    "confidence": 0.95
    },
    {
    "label": "footsteps",
    "start": 12.5,
    "end": 15.8,
    "confidence": 0.88
    },
    {
    "label": "keyboard_typing",
    "start": 18.3,
    "end": 25.1,
    "confidence": 0.91
    }
    ],
    "background": {
    "label": "office_ambient",
    "confidence": 0.87
    },
    "audio_scene": "indoor_workspace"
    }