@vpalmisano/webrtcperf-js
    Preparing search index...

    Type Alias FakeScreenshareParams

    Parameters for the fake screenshare.

    type FakeScreenshareParams = {
        animationDuration: number;
        delay: number;
        embed: string;
        height: number;
        pointerAnimation: number;
        slides: number;
        urls: string[];
        width: number;
    }
    Index

    Properties

    animationDuration: number

    The duration of the transition animation.

    1000
    
    delay: number

    The delay in milliseconds between slides.

    5000
    
    embed: string

    If set, the fake screenshare will use an iframe to display the embed URL instead of a list of URLs defined in the urls parameter.

    ''
    
    height: number

    The height of the fake screenshare.

    1080
    
    pointerAnimation: number

    If set, a pointer animation will be added to the fake screenshare with the given duration in milliseconds.

    0
    
    slides: number

    The number of slides to display.

    4
    
    urls: string[]

    The list of URLs to display as slides. If pointing to an image, it will be displayed as a static image, otherwise, it will be displayed as embedded content. If unset, a list of random images will be loaded from https://picsum.photos

    []
    
    width: number

    The width of the fake screenshare.

    1920