Mixpeek Logo
    Schedule Demo
    Video

    Language Identification

    Detect which language is being spoken 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 identification model to use. Default: lang-id-v2

    Minimum confidence threshold for language identification. Default: 0.7

    Whether to include alternative language suggestions. Default: true

    Whether to include language segments. Default: true

    Output

    {
    "language": "fr",
    "confidence": 0.96,
    "alternatives": [
    {
    "language": "fr-CA",
    "confidence": 0.03
    },
    {
    "language": "fr-BE",
    "confidence": 0.01
    }
    ],
    "segments": [
    {
    "start": 0,
    "end": 30.5,
    "language": "fr",
    "confidence": 0.97
    },
    {
    "start": 30.5,
    "end": 35.2,
    "language": "en",
    "confidence": 0.92
    }
    ]
    }