Mixpeek Logo
    Schedule Demo
    Video

    Acoustic Scene Classification

    Identify the environment where audio was recorded

    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 acoustic scene classification model to use. Default: scene-classifier-v2

    Minimum confidence threshold for scene classification. Default: 0.6

    Whether to include alternative scene suggestions. Default: true

    Whether to include detailed audio features. Default: true

    Output

    {
    "scene": "restaurant",
    "confidence": 0.86,
    "alternative_scenes": [
    {
    "label": "cafe",
    "confidence": 0.08
    },
    {
    "label": "bar",
    "confidence": 0.04
    }
    ],
    "audio_features": {
    "ambient_noise_level": "medium",
    "reverberation": "moderate",
    "crowd_density": "high"
    }
    }