ContentInspectModule

The ContentInspectModule struct is used to configure the frequency of local screenshot uploads.

public class ContentInspectModule
    {
        public CONTENT_INSPECT_TYPE type;
        public uint interval;
        public VIDEO_MODULE_POSITION position;

        public ContentInspectModule()
        {
            type = CONTENT_INSPECT_TYPE.CONTENT_INSPECT_INVALID;
            interval = 0;
            position = VIDEO_MODULE_POSITION.POSITION_POST_CAPTURER;
        }
    };

Properties

type
Type of functional module. See CONTENT_INSPECT_TYPE.
interval
Interval for local screenshot upload, in seconds. The value must be greater than 0. Default is 0, which means no screenshot upload. Recommended value is 10 seconds, but you can adjust it based on your business needs.
position
Position of the video observer. See VIDEO_MODULE_POSITION.