Mixpeek Logo
    Schedule Demo
    Audio

    Audio Event Detection

    Detect specific audio events like gunshots, glass breaking, alarms, etc.

    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 audio file

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

    The event detection model to use. Default: audioset

    Confidence threshold for event detection. Default: 0.7

    Output

    {
    "events": {
    "type": "array",
    "items": {
    "type": "object",
    "properties": {
    "event_type": {
    "type": "string"
    },
    "start": {
    "type": "number"
    },
    "end": {
    "type": "number"
    },
    "confidence": {
    "type": "number"
    }
    }
    }
    }
    }