Mixpeek Logo
    Schedule Demo
    Video

    Language Detection

    Detect and identify languages 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 language detection model to use. Default: language-detector-v2

    Minimum confidence threshold for language detection. Default: 0.7

    Whether to include alternative language suggestions. Default: true

    Whether to include language segments. Default: true

    Output

    {
    "languages": [
    "english",
    "spanish",
    "french"
    ],
    "confidence": 0.95,
    "segments": [
    {
    "start": 0,
    "end": 10.5,
    "language": "english"
    },
    {
    "start": 10.5,
    "end": 20.3,
    "language": "spanish"
    },
    {
    "start": 20.3,
    "end": 30,
    "language": "french"
    }
    ]
    }