其他分享
首页 > 其他分享> > js读取mjpeg视频流与物体追踪

js读取mjpeg视频流与物体追踪

作者:互联网

js mjpeg buffer stream

项目要求使用http和mjpeg在页面实现实时展示视频流

基础知识

流操作:ReadableStream

Uint8Array && ArrayBuffer

Blob

Canvas

本示例中,我们要不断地从后端读取视频流,(我们读到的本质上是一帧一帧的图片),然后在页面中通过img标签展示出来,动态变化的图片即形成视频。
在拿到url后,我们使用ReadableStream.getReader()方法创建一个读取器,因为需要对视频流进行操作;读出每一帧图片所携带的信息:图片本身的信息和json数据,这个json数据就是我们要画出的点的位置,但是在这里我只做一个演示,json中存放了一个键值对,我们把键值对读出来动态展示到画布上即可。
js 解析 mjpeg 视频流代码:

点击查看代码
<style>
    .container{
      width: 800px;
      height: 600px;
      position: relative;
    }
    #canvas{
      position: absolute;
      top: 0;
      left: 0;
    }
 </style>

<body>
  <div class="container">
    <canvas id="canvas" width="800" height="600"></canvas>
    <img id="image" width="800" height="600" /> 
  </div>

  <script>
    const url = 'mjpegurl';
    fetch(url).then((res) => {
      const reader = res.body.getReader();
      let lineLength = 0;
      let lineBuffer = new Uint8Array(new ArrayBuffer(1000))
      let headers = "";
      let contentLength = -1;
      let contentType = "";
      let imageLength = -1;
      let imageBuffer = null;
      let jsonLength = -1;
      let jsonData = "";
      let bytesRead = 0;
      const read = () => {
        reader.read().then(({done, value}) => {
          if(done) return
          for(let index = 0,len = value.length; index < len; index++) {
		  //先读取分段的头部块。按行读取,当数据块长度未有效时,表示正在读取头部块。
            if(contentLength <= 0) {
              lineBuffer[lineLength++] = value[index];
			  //每行字符长度最小为2字节。
              if(lineLength < 2) continue;
			  //如果行首尾不是\r\n则本行未结束,继续读。
              if(lineBuffer[lineLength - 2] != 0x0d || lineBuffer[lineLength - 1] != 0x0a) continue;
			  //成功读取一行,转换为String类型,同时把本行数据拼接到头部的字符串变量中。
              for(let i = 0; i < lineLength; i++){
                headers += String.fromCharCode(lineBuffer[i])
              }
			  //检查本行是否为结束行。当行首为\r\n时头部结束。
              if(lineBuffer[0] === 0x0d && lineBuffer[1] === 0x0a) {
			  //以下是解析头部数据。
                contentType = getValue(headers, "Content-Type");
                contentLength = getValue(headers, "Content-length");
                imageLength = getValue(headers, "Content-image-length");
                jsonLength = getValue(headers, "Content-json-length");
                imageBuffer = new Uint8Array(new ArrayBuffer(imageLength));
              }
			  //清空行长度,用于读取下一行。
              lineLength = 0;
            }
			//读取分段的数据块。按数据块的长度读取。
			else if(bytesRead < contentLength) {
              let tempLength = imageLength + jsonLength;
			  //先读取图片数据。
              if(bytesRead < imageLength){
                imageBuffer[bytesRead] = value[index]
              }
			  //图片数据后紧接着是json数据。
			  else if(bytesRead < tempLength) {
                jsonData += String.fromCharCode(value[index])
              }
              bytesRead++;
            }else{
			//把图像更新到img控件上。
              let img = document.getElementById("image")
              img.src = URL.createObjectURL(new Blob([imageBuffer], {type: contentType}))
			  //把图像更新到canvas控件上。
              let ctx = document.getElementById("canvas").getContext("2d")
              ctx.drawImage(img, 0, 0, 800, 600);
              var obj = {}
              try {
                obj = JSON.parse(jsonData)
              } catch (error) {
                console.log("obj parse error", error);
              }
              for(var key in obj){
                ctx.font = "24px Arial"
                ctx.fillStyle = "#ca0c16"
                ctx.fillText(`${key}:${obj[key]}`, 115, 140)
              }
              contentLength = 0;
              imageLength = 0;
              jsonLength = 0;
              bytesRead = 0 ;
              headers = '';
              jsonData = '';
            }
          }
          read();
        }).catch((error) => {
          console.log("read error", error);
        })
      }
      read()
    }).catch((error) => {
      console.error(error);
    })

    const getValue = (headers, key) => {
      let value = ''
      headers.split("\n").forEach((item) => {
        const itemArr = item.split(":")
        if(itemArr[0] === key) value = itemArr[1]
      })
      if(key.includes('length')) {
        return Number(value)
      }else{
        return value;
      }
    }
  </script>
</body>

标签:mjpeg,URL,ArrayBuffer,视频流,value,js,对象,let,Blob
来源: https://www.cnblogs.com/rain111/p/16566501.html