Mixpeek Logo
    Audio

    Speaker Diarization

    Identify and separate different speakers in audio content

    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 speaker diarization model to use. Default: pyannote

    Minimum number of speakers to detect. Default: 1

    Maximum number of speakers to detect. Default: 5

    Output

    {
    "segments": {
    "type": "array",
    "items": {
    "type": "object",
    "properties": {
    "speaker_id": {
    "type": "string"
    },
    "start": {
    "type": "number"
    },
    "end": {
    "type": "number"
    },
    "confidence": {
    "type": "number"
    }
    }
    }
    }
    }