Skip to content Skip to sidebar Skip to footer

Process Rtsp With Node.js For Taking An Image Snapshot

I have a RTSP that I would love to make Node.JS understand. I found a way to do it using Java taking a capture from a webcam but I would love to just use Node.js on this task and g

Solution 1:

I really found the answer months ago but forgot I asked here.

My code is at https://github.com/ghostbar/RTSP-Streaming.js. It reads it from an RTSP stream and converts it to JPEG, then to base64 in order to pass it via Socket.IO to the client.

Solution 2:

Here's some code with minimal dependencies which can read data from a Webcam and upload it to as an image on the server using Node: https://github.com/josher19/node-jpegcam

You could have it send the data to the client instead of saving it as an image on the server.

->> Josh <<-

Post a Comment for "Process Rtsp With Node.js For Taking An Image Snapshot"