k-yle / rtsp-relay

📽 View an RTSP stream in your web browser using an express.js server
https://npm.im/rtsp-relay
MIT License
312 stars 58 forks source link

Uncaught RuntimeError: memory access out of bounds #236

Closed alfian444 closed 7 months ago

alfian444 commented 8 months ago

I get an error on my browser console like the following

image

how to solve this error?

k-yle commented 8 months ago

This error is coming from JSMpeg. you may want to check out these issues.

alfian444 commented 7 months ago

This error is coming from JSMpeg. you may want to check out these issues.

I have been testing for several weeks by adding videoBufferSize as follows:

loadPlayer({ videoBufferSize:10 * 1024 * 1024, url:url:, canvas: document.getElementById('canvas') }) and the "memory access out of bounds" error does not appear

Thanks