Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Info

Access the Control Panel from here.

To create a New Config from the Control Panel, check this document.

In the Video section of the control panel, we can see two options for Resolution:

...

  1. We can select Custom resolution from the control panel and set high enough values so that the video quality is always the same.

    image-20240402-155735.pngImage Removed

image-20240404-080026.pngImage Added

  1. We can set the resolution we want from the front end with the following code:

Code Block
let obj = {
			cmd: "freezeResolutionAt",
			x: 1920,
			y: 1080
	}
	document.getElementById("iframe_1").contentWindow.postMessage(JSON.stringify(obj), "*");