Options to customize video.

Param: popper

Options for the underlying popper element.

Param: isResizable

Whether the video container is resizable. Default is true.

Param: viewSizes

Sizing options for (a) ribbon view, and (b) all other views.

Param: defaultViewType

default view type for the meeting. Note that this is an init-only option, and does nothing post-init

interface VideoOptions {
    defaultViewType?: SuspensionViewType;
    isResizable?: boolean;
    popper?: VideoPopperStyle;
    viewSizes?: {
        default?: CustomSize;
        ribbon?: CustomSize;
    };
}

Properties

defaultViewType?: SuspensionViewType
isResizable?: boolean
viewSizes?: {
    default?: CustomSize;
    ribbon?: CustomSize;
}

Type declaration