we have websocket connection and in this connection I received one image per secound.so my question is how can I display this image that is a blob format ? I have to use image tag or video play for it and how can I show this?
ws.onopen = e => {
console.log(e)
}
ws.onmessage = e => {
}
const url = URL.createObjectURL(blob); might works