Type alias DesktopCapturerSource

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

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 declaration

  • appIcon: NativeImageType

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

  • Optional 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.

  • Optional 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.