Mixpeek Logo
    Schedule Demo
    Video

    Emotion Detection

    Detect emotions 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 video file

    Drag and drop a video file here, or click to browse

    The emotion detection model to use. Default: emotion-detector-v2

    Minimum confidence threshold for emotion detection. Default: 0.6

    Whether to include arousal values. Default: true

    Whether to include valence values. Default: true

    Output

    {
    "emotions": [
    {
    "label": "neutral",
    "confidence": 0.15,
    "start": 0,
    "end": 2.5
    },
    {
    "label": "happy",
    "confidence": 0.72,
    "start": 2.5,
    "end": 8.3
    },
    {
    "label": "excited",
    "confidence": 0.85,
    "start": 8.3,
    "end": 15.7
    }
    ],
    "dominant_emotion": "excited",
    "arousal": 0.76,
    "valence": 0.82
    }