-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Web page not rendering isaac gym #40
Comments
Solved the issue, I was using Meta Quest 3S and wanted to try adb without ngrok because of the free trial. It assumes that it will use ngrok even if it skips the https or https part, here are some minor changes I did to make it run: Modified
Modified
|
Hey @OhhTuRnz |
Hey @atharvamete The "hotfix" only works for image mode where it just renders the Isaac Gym environment through shared memory to a VUER webXR webpage that allows you to interact with Isaac Gym only using the hands. This is what the code calls stream_mode="image". However, when running the code in the stream_mode="webrtc" it tries to connect to a server where a zed camera is streamed through that specific webpage. I am right now striving with the code and finding how to do this, because I am not sure if the VUE WebRTC component requires HTTPS, and my hotfix does not work with HTTPS because the page is not loading (when using ngrok it did so maybe I'm not getting something about the forwarding). |
Anyways I need to still work on that so I will reopen |
@OhhTuRnz Thanks for responding, however I'm still lost with making hotfix work. |
Yeah, sorry I'm still finding out how some things work. The main change is to use the server without the certificates because the fallback does not work very well. So just go to ngrok=True (they set it up as false constantly prolly cause their research was done on vision pro) or change the if statement to check if not ngrok and not use the certificates. The RTC server works if you change the IP because they fixed the IP as 192.168.8.102 which is their local IP, changing it to localhost when using HTTP seems to work but I can only see a blank square. Anyway, I think that is because the RTC server they create uses the ZED camera and I am not using that one. Will try to adapt it and see if everything can be ran in localhost. |
Yeah if you set ngrok as true it will be streamed in http://127.0.0.1:8012 (works with localhost:8012) and if you run webrtc it should display a blank square because the ZED camera is obviously missing. WebRTC runs smoother as stated in #36 so I will try to stream the shared buffer through WebRTC. |
If you want to open in metaquest just follow #12; install adb and reverse the port tcp:8012 tcp:8012 while allowing connection from your quest |
Hi there! I previously worked with this code using ngrok and was able to use the Meta Quest 3S correctly. However, right now I've changed to adb and, while I can connect to the web server, I can't see the Isaac Gym simulation in the web page.
I am also testing it in my localhost:8012 local web page and I experience the same issue. Additionally, the web page raises a warning that says that the maximum reconnect attempts were exceeded. Attaching a screenshot.
The text was updated successfully, but these errors were encountered: