Interface CardVideoDisplayOptions

interface CardVideoDisplayOptions {
    remoteProducerId: string;
    eventType: EventType;
    forceFullDisplay: boolean;
    videoStream: null | MediaStream;
    backgroundColor?: string;
    doMirror?: boolean;
    containerProps?: HTMLAttributes<HTMLDivElement>;
    videoProps?: VideoHTMLAttributes<HTMLVideoElement>;
}

Properties

remoteProducerId: string
eventType: EventType
forceFullDisplay: boolean
videoStream: null | MediaStream
backgroundColor?: string
doMirror?: boolean
containerProps?: HTMLAttributes<HTMLDivElement>
videoProps?: VideoHTMLAttributes<HTMLVideoElement>