Mixpeek Logo
    Audio

    Music Analysis

    Analyze music content for tempo, key, mood, and other musical features

    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 music analysis model to use. Default: librosa

    Features to extract. Default: tempo,key,mood

    Output

    {
    "analysis": {
    "type": "object",
    "properties": {
    "tempo": {
    "type": "number"
    },
    "key": {
    "type": "string"
    },
    "mood": {
    "type": "string"
    },
    "instrumentation": {
    "type": "array",
    "items": {
    "type": "string"
    }
    },
    "genre": {
    "type": "string"
    }
    }
    }
    }