Mixpeek Logo
    Schedule Demo
    Audio

    Audio Classification

    Classify audio content into categories like music, speech, noise, 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 audio classification model to use. Default: yamnet

    Confidence threshold for classification. Default: 0.5

    Output

    {
    "classifications": {
    "type": "array",
    "items": {
    "type": "object",
    "properties": {
    "label": {
    "type": "string"
    },
    "confidence": {
    "type": "number"
    },
    "start": {
    "type": "number"
    },
    "end": {
    "type": "number"
    }
    }
    }
    }
    }