rtsp-relay
rtsp-relay copied to clipboard
📽 View an RTSP stream in your web browser using an express.js server
So i have express server running on ubuntu with pm2, i have follow sample usage with many cameras, let say i have 3 camera than i start server with pm2...
i am trying to stream to rtps, but on nodejs i am getting ` [rtsp-relay] Stream died - will recreate when the next client connects ` I have also tried...
Good afternoon. I am replicating the SSL example for creating a WSS. However, when running through npm start or node there is no response on the expected port (8080). I...
``` const express = require("express"); const app = express(); const { proxy, scriptUrl } = require("rtsp-relay")(app); const handler = proxy({ url: `rtsp://admin:[email protected]/h264`, verbose: true, }); app.ws("/api/stream", handler); app.get("/", (req, res)...
trying to dockerize express TS app, works perfectly fine without docker when i try to it gets no data on WS. Can i get a docker-compose sample or any suggestions?
I am new to writing code so sorry for basic questions. The RTSP stream from my IP camera is working in VLC player....so I know the stream is good. I...
I wan code for many ip cam her are my code: const express = require('express'); const app = express(); const { proxy, scriptUrl } = require('rtsp-relay')(app); const handler = proxy({...
i been using it in node express where its been working perfectly fine with that loadPlayer of rtsp but when i read the docs and try implementing in frontend with...
I have created a simple project that is showing rtsp stream in React according to your documentation and I can display the video but I can't hear the video. I...