VUE直播流播放器 使用jessibuca插件-支持H264,H265格式播放。

VUE直播流播放器-支持H264,H265格式

1.效果图

在这里插入图片描述

2.配置文件

在这里插入图片描述

百度网盘直接下载即可

链接:https://pan.baidu.com/s/1IT1LSUjau8s0-UPXLLKq5A 提取码:6666

jessibuca官网:http://jessibuca.monibuca.com/player.html
git地址:https://gitee.com/huangz2350_admin/jessibuca#https://gitee.com/link?target=http%3A%2F%2Fjessibuca.monibuca.com%2F

3.index.html

在这里插入图片描述

代码: <script src="<%= BASE_URL %>jessibuca/index.js"></script>

4.播放组件

<template >
  <div
    id="jessibuca"
    style="width: auto; height: auto; position: relative"
    @mouseover="showbtn"
  >
    <div
      :id="'container' + index"
      ref="container"
      :style="
        'position: relative;width: 100%; height:' +
        height +
        '; background:url(' +
        background +
        ') no-repeat;background-size: 100% 100%;background-color: #000;'
      "
      @dblclick="fullscreenSwich"
    >
      <div
        :id="'buttonsBox' + index"
        class="buttons-box"
        style="position: absolute; left: 0; bottom: 0"
      >
        <div class="buttons-box-left">
          <i
            v-if="!playing"
            class="iconfont icon-play jessibuca-btn"
            @click="playBtnClick"
          />
          <i
            v-if="playing"
            class="iconfont icon-pause jessibuca-btn"
            @click="pause"
          />
          <i class="iconfont icon-stop jessibuca-btn" @click="destroy" />
          <i
            v-if="isNotMute"
            class="iconfont icon-audio-high jessibuca-btn"
            @click="jessibuca.mute()"
          />
          <i
            v-if="!isNotMute"
            class="iconfont icon-audio-mute jessibuca-btn"
            @click="jessibuca.cancelMute()"
          />
        </div>
        <div class="buttons-box-right">
          <span class="jessibuca-btn">{{ kBps }} kb/s</span>
          <!--          <i class="iconfont icon-file-record1 jessibuca-btn"></i>-->
          <!--          <i class="iconfont icon-xiangqing2 jessibuca-btn" ></i>-->
          <i
            class="iconfont icon-camera1196054easyiconnet jessibuca-btn"
            @click="jessibuca.screenshot('截图', 'png', 0.5)"
          />
          <i
            class="iconfont icon-shuaxin11 jessibuca-btn"
            @click="playBtnClick"
          />
          <i
            v-if="!fullscreen"
            class="iconfont icon-weibiaoti10 jessibuca-btn"
            @click="fullscreenSwich"
          />
          <i
            v-if="fullscreen"
            class="iconfont icon-weibiaoti11 jessibuca-btn"
            @click="fullscreenSwich"
          />
        </div>
      </div>
    </div>
    <div
      v-if="!playing && !autoplay"
      class="btn-image"
      :style="'height:' + height"
    >
      <div
        class="btn-image-center"
        @click="playBtnClick"
        :style="
          'width:' +
          btnimageW +
          ';height: ' +
          btnimageH +
          ';background:url(' +
          btnimage +
          ') no-repeat;background-size: 100% 100%;'
        "
      ></div>
    </div>
  </div>
</template>

<script>
/* eslint-disable no-underscore-dangle */
export default {
  name: 'Jessibuca',
  props: {
    index: {
      //index
      type: Number,
      default: 0,
    },
    videoUrl: {
      //播放地址
      type: String,
      default: '',
    },
    error: {
      //报错信息
      type: Function,
      default: null,
    },
    hasAudio: {
      //静音
      type: Boolean,
      default: false,
    },
    height: {
      //播放器高度
      type: String,
      default: '500px',
    },
    isFullResize: {
      //播放面即是否填充满容器
      type: Boolean,
      default: true,
    },
    autoplay: {
      //是否自动播放
      type: Boolean,
      default: false,
    },
    background: {
      //封面图
      type: String,
      default: '',
    },
    btnimage: {
      //播放器按钮图片
      type: String,
      default: 'data:image/png;base64,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',
    },
    btnimageH: {
      //播放器按钮图片高度
      type: String,
      default: '60px',
    },
    btnimageW: {
      //播放器按钮图片宽度
      type: String,
      default: '60px',
    },
  },
  data() {
    return {
      jessibuca: null,
      playing: false,
      isNotMute: false,
      quieting: false,
      fullscreen: false,
      loaded: false, // mute
      speed: 0,
      performance: '', // 工作情况
      kBps: 0,
      btnDom: null,
      videoInfo: null,
      volume: 1,
      rotate: 0,
      vod: true, // 点播
      forceNoOffscreen: false,
    }
  },
  watch: {
    videoUrl: {
      handler(newData, oldData) {
        if (!this.autoplay && !oldData) return
        this.play(newData)
      },
    },
  },
  mounted() {
    window.onerror = (msg) => {
      // console.error(msg)
    }
    const paramUrl = decodeURIComponent(this.$route.params.url)
    this.$nextTick(() => {
      if (typeof this.videoUrl === 'undefined') {
        this.videoUrl = paramUrl
      }
      this.btnDom = document.getElementById('buttonsBox' + this.index)
      console.log(`初始化时的地址为: ${this.videoUrl}`)
      this.autoplay ? this.play(this.videoUrl) : ''
    })
  },
  destroyed() {
    if (this.jessibuca) {
      this.jessibuca.destroy()
    }
    this.playing = false
    // this.loaded = false
    this.performance = ''
  },
  methods: {
    create() {
      const options = {}
      console.log(this.$refs.container)
      console.log(`hasAudio  ${this.hasAudio}`)

      this.jessibuca = new window.Jessibuca(
        Object.assign(
          {
            container: this.$refs.container,
            videoBuffer: 0.5, // 最大缓冲时长,单位秒
            isResize: true,
            isFlv: true,
            decoder: '/jessibuca/index.js',
            // text: "WVP-PRO",
            // background: "bg.jpg",
            loadingText: '加载中',
            hasAudio:
              typeof this.hasAudio === 'undefined' ? true : this.hasAudio,
            debug: false,
            supportDblclickFullscreen: false, // 是否支持屏幕的双击事件,触发全屏,取消全屏事件。
            operateBtns: {
              fullscreen: false,
              screenshot: false,
              play: false,
              audio: false,
            },
            record: 'record',
            isFullResize: this.isFullResize || false,
            vod: this.vod,
            forceNoOffscreen: this.forceNoOffscreen,
            isNotMute: this.isNotMute,
          },
          options
        )
      )

      // eslint-disable-next-line no-underscore-dangle
      const _this = this
      this.jessibuca.on('load', () => {
        console.log('on load init')
      })

      this.jessibuca.on('log', (msg) => {
        console.log('on log', msg)
      })
      this.jessibuca.on('record', (msg) => {
        console.log('on record:', msg)
      })
      this.jessibuca.on('pause', () => {
        _this.playing = false
      })
      this.jessibuca.on('play', () => {
        _this.playing = true
      })
      this.jessibuca.on('fullscreen', (msg) => {
        console.log('on fullscreen', msg)
        _this.fullscreen = msg
      })

      this.jessibuca.on('mute', (msg) => {
        console.log('on mute', msg)
        _this.isNotMute = !msg
      })
      this.jessibuca.on('audioInfo', (msg) => {
        // console.log("audioInfo", msg);
      })

      this.jessibuca.on('videoInfo', function (msg) {
        this.videoInfo = msg
        // console.log("videoInfo", msg);
      })

      this.jessibuca.on('bps', (bps) => {
        // console.log('bps', bps);
      })
      // eslint-disable-next-line no-unused-vars
      let _ts = 0
      this.jessibuca.on('timeUpdate', (ts) => {
        // console.log('timeUpdate,old,new,timestamp', _ts, ts, ts - _ts);
        _ts = ts
      })

      this.jessibuca.on('videoInfo', (info) => {
        console.log('videoInfo', info)
      })

      this.jessibuca.on('error', (error) => {
        console.log('error', error)
      })

      this.jessibuca.on('timeout', () => {
        console.log('timeout')
      })

      this.jessibuca.on('start', () => {
        console.log('start')
      })

      this.jessibuca.on('performance', (performance) => {
        let show = '卡顿'
        if (performance === 2) {
          show = '非常流畅'
        } else if (performance === 1) {
          show = '流畅'
        }
        _this.performance = show
      })
      this.jessibuca.on('buffer', (buffer) => {
        // console.log('buffer', buffer);
      })

      this.jessibuca.on('stats', (stats) => {
        // console.log('stats', stats);
      })

      this.jessibuca.on('kBps', (kBps) => {
        _this.kBps = Math.round(kBps)
      })

      // 显示时间戳 PTS
      this.jessibuca.on('videoFrame', () => {})

      //
      this.jessibuca.on('metadata', () => {})
    },
    playBtnClick(event) {
      this.play(this.videoUrl)
    },
    play(url) {
      if (!url || url.length == 0) {
        this.$message.warning('当前摄像头出错,请稍后重试')
        this.pause()
        return
      }
      if (this.jessibuca) {
        this.destroy()
      }
      this.create()
      this.jessibuca.on('play', () => {
        this.playing = true
        // this.loaded = true
        // this.quieting = this.jessibuca.quieting
      })
      if (this.jessibuca.hasLoaded()) {
        this.jessibuca.play(url)
      } else {
        this.jessibuca.on('load', () => {
          console.log('load 播放')
          this.jessibuca.play(url)
        })
      }
    },
    pause() {
      if (this.jessibuca) {
        this.jessibuca.pause()
      }
      this.playing = false
      this.err = ''
      this.performance = ''
    },
    destroy() {
      if (this.jessibuca) {
        this.jessibuca.destroy()
      }
      if (document.getElementById('buttonsBox' + this.index) == null) {
        document
          .getElementById('container' + this.index)
          .appendChild(this.btnDom)
      }
      this.jessibuca = null
      this.playing = false
      this.err = ''
      this.performance = ''
    },
    showbtn() {
      if (document.getElementById('buttonsBox' + this.index) == null) {
        document
          .getElementById('container' + this.index)
          .appendChild(this.btnDom)
      }
    },
    eventcallbacK(type, message) {
      // console.log("player 事件回调")
      // console.log(type)
      // console.log(message)
    },
    fullscreenSwich() {
      const isFull = this.isFullscreen()
      this.jessibuca.setFullscreen(!isFull)
      this.fullscreen = !isFull
    },
    isFullscreen() {
      return (
        document.fullscreenElement ||
        document.msFullscreenElement ||
        document.mozFullScreenElement ||
        document.webkitFullscreenElement ||
        false
      )
    },
  },
}
</script>

<style>
@font-face {
  font-family: 'iconfont'; /* Project id 1291092 */
  src: url('iconfont.woff2?t=1637741914969') format('woff2');
}

.iconfont {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-play:before {
  content: '\e603';
}

.icon-pause:before {
  content: '\e6c6';
}

.icon-stop:before {
  content: '\e6a8';
}

.icon-audio-high:before {
  content: '\e793';
}

.icon-audio-mute:before {
  content: '\e792';
}

.icon-shuaxin11:before {
  content: '\e720';
}

.icon-weibiaoti10:before {
  content: '\e78f';
}

.icon-weibiaoti11:before {
  content: '\e790';
}

.icon-camera1196054easyiconnet:before {
  content: '\e791';
}

.buttons-box {
  width: 100%;
  height: 0px;
  transition: 0.4s;
  background-color: rgba(43, 51, 63, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  user-select: none;
  z-index: 100;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#jessibuca:hover .buttons-box {
  height: 40px;
}

.buttons-box-left {
  display: flex;
  flex: 1;
  align-items: center;
}
.jessibuca-btn {
  color: rgb(255, 255, 255);
  line-height: 27px;
  margin: 0px 10px;
  padding: 0px 2px;
  cursor: pointer;
  text-align: center;
  font-size: 20px !important;
}
.buttons-box-right {
  height: 100%;
  position: absolute;
  right: 0;
  display: flex;
  flex: 1;
  align-items: center;
  font-size: 20px;
}
.btn-image {
  width: 100%;
  /* height: 100%; */
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99 !important;
}
.btn-image-center {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
</style>

5.父组件

<template>
  <div class="app-container">
    <player video-url="视频地址" :has-audio="false" height="calc(100vh - 110px)" :isFullResize="false" :autoplay="true"
      :index="getIndex" />
  </div>
</template>
<script>
import player from '@/components/jessibucaPlayer/jessibuca.vue' // h265播放器

export default {
  name: 'video',
  components: {
    player,
  },
  data() {
    return {
    }
  },
  computed: {
    // 获取时间戳
    getIndex() {
      let time = new Date().getTime()
      return time
    },
  },
}
</script>

  • 2
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

海纳百川lcj

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值