Vinyl
    Preparing search index...

    Interface QualitySelectorImplOptions

    interface QualitySelectorImplOptions {
        bandwidthMultiplier?: number;
        maxFetchedBeforeDown?: number;
        minFetchedBeforeUp?: number;
        strategy?: AbrStrategy;
    }
    Index

    Properties

    bandwidthMultiplier?: number

    A multiplier for the estimated bandwidth to give tolerance to quality selection. Default: 0.7

    maxFetchedBeforeDown?: number

    If at least this amount of time (in seconds) is currently fetched, don't consider an ABR-down. Default: 30

    minFetchedBeforeUp?: number

    If less than this amount of time (in seconds) is currently fetched, don't consider an ABR-up. Note: ABR-up will only happen during active playback if AdaptationSet.bitstreamSwitching is true. ABR-up will not happen across adaptation sets. Default: 20

    strategy?: AbrStrategy

    Defines the strategy used for quality selection.

    Default: BEST (ABR will be enabled)