You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a basic server implementation, I can't get a VLC client to connect to the server, and the server crashes (Windows).
Server code:
const RtspServer = require('rtsp-streaming-server').default;
const server = new RtspServer({
serverPort: 5554,
clientPort: 6554,
rtpPortStart: 10000,
rtpPortCount: 10000
});
async function run () {
try {
await server.start();
} catch (e) {
console.error(e);
}
}
run();
The stream comes from FFMPEG - only Video H264 encoding - here is my app streaming on rtsp://localhost:5554/stream1:
When connecting VLC on address: 'rtsp://localhost:6554/stream1' I get rejected - and the server crashes:
Not sure where I should look at,
thanks !
The text was updated successfully, but these errors were encountered:
Hi,
On a basic server implementation, I can't get a VLC client to connect to the server, and the server crashes (Windows).
Server code:
The stream comes from FFMPEG - only Video H264 encoding - here is my app streaming on rtsp://localhost:5554/stream1:
When connecting VLC on address: 'rtsp://localhost:6554/stream1'
I get rejected - and the server crashes:
Not sure where I should look at,
thanks !
The text was updated successfully, but these errors were encountered: