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:
...
We can select Custom resolution from the control panel and set high enough values so that the video quality is always the same.
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), "*"); |