ScreenVideoParameters

Video encoding configuration for the shared screen stream.

public class ScreenVideoParameters
    {
        public VideoDimensions dimensions { set; get; }

        public int frameRate { set; get; }

        public int bitrate { set; get; }

        public VIDEO_CONTENT_HINT contentHint = VIDEO_CONTENT_HINT.CONTENT_HINT_MOTION;

        public ScreenVideoParameters()
        {
            dimensions = new VideoDimensions(1280, 720);
            frameRate = 15;
        }
    };

Properties

dimensions
Video encoding resolution. Default is 1280 × 720.
frameRate
Video encoding frame rate (fps). Default is 15.
bitrate
Video encoding bitrate (Kbps).
contentHint
Content type of the screen sharing video.