supervision-js
    Preparing search index...

    Interface MediaSessionNormalizationOptions

    interface MediaSessionNormalizationOptions {
        container?: MediaNormalizationContainer;
        video?: MediaNormalizationVideoOptions;
        audio?: MediaNormalizationAudioOptions;
        signal?: AbortSignal;
        onProgress?: (progress: MediaNormalizationProgress) => void;
        onOutputProgress?: (progress: MediaNormalizationOutputProgress) => void;
        stream?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Output container. Defaults to WebM.

    signal?: AbortSignal
    onProgress?: (progress: MediaNormalizationProgress) => void
    onOutputProgress?: (progress: MediaNormalizationOutputProgress) => void
    stream?: boolean

    When true, media normalization may expose progressive output before the entire input has finished normalizing. Defaults to false, which opens the session only once the complete normalized blob exists.