Mixpeek Logo
    Schedule Demo
    Video

    Audio Embedding

    Generate vector embeddings for 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 embedding model to use. Default: audio-embedder-v2

    Size of the embedding vector. Default: 512

    Duration of each segment in seconds. Default: 1

    Whether to include global audio embedding. Default: true

    Output

    {
    "embedding": [
    0.053,
    -0.127,
    0.081,
    0.243,
    "..."
    ],
    "dimensions": 768,
    "model": "audio_encoder_v3",
    "segment_embeddings": [
    {
    "start": 0,
    "end": 10,
    "embedding": [
    0.048,
    -0.115,
    0.092,
    "..."
    ]
    },
    {
    "start": 10,
    "end": 20,
    "embedding": [
    0.061,
    -0.138,
    0.075,
    "..."
    ]
    }
    ]
    }