项目开发时遇到问题
使用videojs关闭窗口后视频流也一直刷新,使用pause暂停无效。 实际开发中肯定不能这么消耗内存。
视频是在弹窗的时候展示,所以完整解决方案自己琢磨了一下,如下

    <div v-html="videohtml">
    </div> 

    getVideoDialog() {
      this.videoVisible = true; 
      this.videohtml = `<video id="videoPlayer" class="video-js" style="width:500px;height:330px" muted></video>`;  
      this.$nextTick(() => {
        this.player = Videojs("videoPlayer", this.options);
        ....
      });
    },
    closeVideo() {//关闭窗口方法  
      if (this.player) {  
        this.player.dispose(); // 该方法会重置videojs的内部状态并移除dom
        this.videohtml ='';
      }
      this.videoVisible = false;//注意关闭窗口时间,要在控件销毁之后,否则会有问题
    },

还有一点要注意,v-html里编译出来的dom样式不受style scoped里样式的影响,所以这里大小直接定义在了video上

切换视频流问题
先用了reset后重新load新的地址发现时而切换,不满足需求

 this.player.reset();
 this.player.src([
  {
        src: videoUrl,
        type: "video/x-flv"
      }
    ]);
 this.player.load(videoUrl);
 this.player.play()  

需要调用this.player.dispose(),销毁实例再重新初始化赋值src

Logo

前往低代码交流专区

更多推荐