Bitmovin Player API 8.268.0
    Preparing search index...

    Interface VideoSizeLimitationConfig

    interface VideoSizeLimitationConfig {
        maxSelectableVideoHeight?: number;
        maxSelectableVideoWidth?: number;
        minSelectableVideoHeight?: number;
        minSelectableVideoWidth?: number;
    }
    Index
    maxSelectableVideoHeight?: number

    Upper video height boundary for video qualities. All qualities above this threshold will not be selected by the ABR logic. These qualities are still available for manual quality selection unless the exclude flag is set to true.

    If the video quality with the lowest video height is higher than this value, that quality will still be allowed for selection.

    Can be set to 0 for no limitation.

    maxSelectableVideoWidth?: number

    Upper video width boundary for video qualities. All qualities above this threshold will not be selected by the ABR logic. These qualities are still available for manual quality selection unless the exclude flag is set to true.

    If the video quality with the lowest video width is higher than this value, that quality will still be allowed for selection.

    Can be set to 0 for no limitation.

    minSelectableVideoHeight?: number

    Lower video height boundary for video qualities. All qualities below this threshold will not be selected by the ABR logic. These qualities are still available for manual quality selection unless the exclude flag is set to true.

    If the video quality with the highest video height is lower than this value, that quality will still be allowed for selection.

    Can be set to 0 for no limitation.

    minSelectableVideoWidth?: number

    Lower video width boundary for video qualities. All qualities below this threshold will not be selected by the ABR logic. These qualities are still available for manual quality selection unless the exclude flag is set to true.

    If the video quality with the highest video width is lower than this value, that quality will still be allowed for selection.

    Can be set to 0 for no limitation.