Reputation: 71
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
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