Kyℓe Hensel

Results 130 comments of Kyℓe Hensel

Any update on this? I'm happy to help get this merged if required. We would really like to use json with comments. @toddbluhm if you're concerned about adding another dependency...

Hi, do you have a example of this bug, perhaps a basic repository where I can test this? It's difficult to help without seeing any code.

Is there any way of opening the dev tools in production? Pretty difficult to debug the issue otherwise

for some reason `mainWindow.webContents.openDevTools()` seems to have no effect in production. Perhaps the issue is that in production, you're serving the react app from a `file://` url, rather than from...

Thanks for the suggestion @evalor, are you experiencing the same issue? I just tried the reproduction example from @na-613c (https://github.com/na-613c/web-rtsp-relay-electron), and it seems to work fine in production. Not sure...

hi @MMIINNHH, yes that's possible. Here's an example: ```js app.ws('/api/stream', (ws, req) => proxy({ url: req.query.url, })(ws)); ``` then in your frontend, you would use a URL of `ws://localhost:1233/api/stream?url=rtsp://...`

@waleedd32 does https://github.com/k-yle/rtsp-relay/issues/12#issuecomment-770121775 not answer your question?

Hi, are you accessing `/api/stream` via localhost or through a proxy/gateway/router etc.? Also HTTP/ws or HTTPS/wss? And does the same RTSP url work in VLC player?

Hi, apologies for the delayed response. At the moment this library doesn't support that, because on slow networks we would need to merge several incomplete frames to get a reliable...

I don't recommend this - read https://github.com/k-yle/rtsp-relay/issues/97#issuecomment-925337675 first - but you can [take a screenshot of the HTML canvas](https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toBlob).