-
-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RTSP Stream not coming up #246
Comments
same not working |
have you added the |
i think is working
yes is working .... i was following exactly
this doesnt contain transport ... so i thinking why is not working |
Sorry, I have a question
|
@tuanth89 Perhaps your system does not support the video encoding currently in use, such as H.265 |
I have a rtsp stream working in VLC media player. When opening express it comes with an empty page with no errors. When i turn the verbose :true i get Stream died - will recreate when the next client connects.
const express = require('express');
const app = express();
const { proxy, scriptUrl } = require('rtsp-relay')(app);
const handler = proxy({
url:
rtsp://1.1.1:554/live1.sdp
,// if your RTSP stream need credentials, include them in the URL as above
verbose: false,
});
// the endpoint our RTSP uses
app.ws('/api/stream', handler);
// this is an example html page to view the stream
<script src='${scriptUrl}'></script> <script> loadPlayer({ url: 'ws://' + location.host + '/api/stream', canvas: document.getElementById('canvas') }); </script>app.get('/', (req, res) =>
res.send(`
`),
);
app.listen(2000);
The text was updated successfully, but these errors were encountered: