Mixpeek Logo
    Schedule Demo
    Video

    Music Analysis

    Extract musical features, genre, tempo, and mood from audio

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

    Minimum confidence threshold for music analysis. Default: 0.6

    Whether to include detailed segment analysis. Default: true

    Output

    {
    "genre": [
    "jazz",
    "instrumental"
    ],
    "tempo": 120,
    "key": "C major",
    "mood": [
    "relaxing",
    "sophisticated"
    ],
    "instruments": [
    "piano",
    "bass",
    "drums",
    "saxophone"
    ],
    "segments": [
    {
    "start": 0,
    "end": 32.5,
    "section": "intro"
    },
    {
    "start": 32.5,
    "end": 96.2,
    "section": "main_theme"
    }
    ]
    }