I have an RTSP that I would like to make Node.JS understand. I found a way to do this using Java, which took the capture from the webcam , but I would really like to just use Node.js to complete this task and get it from the RTSP'd video.
I intend to use setInterval, capture the stream, convert it to base64 and pass it through Socket.IO to the client so that it can see it as a tag <img>in its browser. Most of this will be taken from a guy who does this with a webcam , but I only have RTSP available as a video source.
So, does anyone know if there is a way to do this?
source
share