Hi, I’m looking to use the Omniverse Streaming Client and am trying to run livestream.py in the standalone_examples to test if it works. I can see that this example is setup to use the websocket browser client rather than the streaming one but can’t find the code anywhere to convert it to use the streaming client. I know in the old version of Isaac Sim I was able to use the following commands to achieve this but can’t find an updated version anywhere in the docs:
Old Code:
ext_manager = omni.kit.app.get_app().get_extension_manager()
omniverse_kit.set_setting("/app/window/drawMouse", True)
omniverse_kit.set_setting("/app/livestream/proto", "ws")
ext_manager.set_extension_enabled_immediate("omni.kit.livestream.core", True)
ext_manager.set_extension_enabled_immediate("omni.kit.livestream.native", True)
Thank you