I am trying to run Isaac Sim over the internet using WebSocket on a docker container (either by running the runheadless.websocket.sh
bash file or by running standalone python scripts). Websocket seems to adapt the resolution of the stream depending on my PC resolution and the browser window size. This is an issue for me as the application fonts become too small due to high screen resolution. Therefore, I would like to fix the resolution to a low value. However, I did not manage to do this.
How can fix the resolution?
Note: setting window_width/height values on the config file seems to be ignored while running from standalone files.
CONFIG = {
"width": 1280, # 1280
"height": 720, # 720
"window_width": 1920, # 1920
"window_height": 1080, # 1080
"headless": True,
"renderer": "RayTracedLighting",
"display_options": 3286, # Set display options to show default grid
}