Zoom Meeting SDK for Web
    Preparing search index...

    Type Alias DesktopCapturerSource

    Each DesktopCapturerSource represents a screen or an individual window that can be captured. The type of the return value of the getVideoSourcesCallBack method is passed in the shareSource API.

    type DesktopCapturerSource = {
        appIcon: NativeImageType;
        appIconSrc?: string;
        display_id: string;
        id: string;
        imgSrc?: string;
        name: string;
        thumbnail: NativeImageType;
    }
    Index

    Properties

    appIcon.toDataURL() method used to display the app icon.

    appIconSrc?: string

    (Optional)The app icon's image source URL, used to display app icon. If you pass this parameter, the SDK uses in as the app icon.

    display_id: string

    The display ID.

    id: string

    The app ID used to pass the ID to the media stream.

    imgSrc?: string

    (Optional) The app screenshot's image source URL, used to display app screenshots. If you pass this parameter, the SDK uses it as the thumbnail.

    name: string

    The app name.

    thumbnail: NativeImageType

    thumbnail.toDataURL() method used to display app screenshots.