Receive h264/h265 UDP video stream

Hi! Has anyone had success displaying an h264 or h265 UDP (RTP) video stream from the IP camera on the Oculus Quest or the Android platform in general?
I have been trying to find a solution for several days without success.
I have already tried receiving the stream through AVPro but it doesn’t work. I’ve also tried mray Gstreamer implementation but it’s really very hard to get it to work because of great amount of errors.

So has anyone had success with these solutions or maybe some other approaches?

Would be grateful for any help!

Howdy,
Regarding IP camera if you have URL of pure media data stream you could use Unity’s VideoPlayer with URL as it’s path

Content can be either a VideoClip imported asset or a URL such as file:// or http://

If that is not an option you could try parsing data to RenderTexture with WebRequests

Moreover, you can export Android project and implement MediaExtractor yourself, but as far as I know Android has requirements for media streaming that might not allow straight forward solution for your problem…