Convert UDP datagram into MPEG-TS video stream

Context: I’m building a React Native mobile app and connect it to a GoPro camera. I’m trying to use Preview Streaming feature which allows the mobile app to live-preview the video recorded from the camera.

Technical info. The GoPro camera will send data to the mobile app via udp://*:8554. Data is in MPEG-TS format. I can receive the datagram already, but it’s in binary data. To play the video (using WebRTC view), I’m trying to convert the data into a video stream, which I cannot right now

Question Is it possible to use MediaSoup Client to read video stream from the UDP port and then pass the stream to the WebRTC view?

No. Browsers can only receive video via HTTP or WebRTC.