dorforer
dorforer

Reputation: 71

Stream WebRTC from an RTSP stream

Currently I have an RTSP stream coming from my IP camera, I have of course the IP and if I try to display it on vlc it all work good (rtsp://IP:PORT/channel). The next step is to show it on my web - be able to integrate it as a js video component, is there any way to convert it to WebRTC/HTTP? Maybe using vlc (because i'm using device with no GUI)? Thanks!

Upvotes: 3

Views: 9119

Answers (1)

Sean DuBois
Sean DuBois

Reputation: 4232

You will need some sort of 'Protocol Bridge'. The lucky thing is that RTSP is really just a subset of WebRTC (they both use RTP). What you do need is for something to handle ICE, DTLS and SRTP for you.

A project I use is RTSPToWebRTC to do this. There are lots of other options out there though!

Upvotes: 1

Related Questions