videosphere
    Preparing search index...

    Tuning knobs for createAudioActivityDetector.

    interface AudioActivityDetectorOptions {
        windowMs?: number;
        hopMs?: number;
        enterMusicMs?: number;
        exitMusicMs?: number;
        minMusicDwellMs?: number;
        musicThreshold?: number;
        speechThreshold?: number;
        classifier?: AudioActivityClassifier;
    }
    Index

    Properties

    windowMs?: number

    Analysis window length in milliseconds.

    hopMs?: number

    Interval between classifications in milliseconds.

    enterMusicMs?: number

    Sustained music evidence required before entering the music state.

    exitMusicMs?: number

    Sustained speech evidence required before leaving the music state.

    minMusicDwellMs?: number

    Minimum time to remain in the music state once entered.

    musicThreshold?: number

    Music score at or above which a window votes music.

    speechThreshold?: number

    Music score at or below which a window votes speech.

    Overrides the default heuristic classifier (e.g. a neural model).