| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 |
- <template>
- <div
- ref="container"
- class="jessibuca-container"
- :class="{'jessibuca-fullscreen': fullscreen}"
- @dblclick="fullscreenSwich"
- >
- <div class="jessibuca-player-wrapper"></div>
- <div id="buttonsBox" class="buttons-box">
- <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="mute()" />
- <i v-if="!isNotMute" class="iconfont icon-audio-mute jessibuca-btn" @click="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"
- style="font-size: 1rem !important"
- @click="screenshot"
- />
- <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>
- </template>
- <script>
- const jessibucaPlayer = {}
- export default {
- name: 'Jessibuca',
- props: ['videoUrl', 'error', 'hasAudio', 'height'],
- data() {
- return {
- 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(val, _) {
- this.$nextTick(() => {
- this.play(val)
- })
- },
- immediate: true
- }
- },
- created() {
- const paramUrl = decodeURIComponent(this.$route.params.url)
- this.$nextTick(() => {
- this.updatePlayerDomSize()
- window.onresize = this.updatePlayerDomSize
- if (typeof (this.videoUrl) === 'undefined') {
- this.videoUrl = paramUrl
- }
- this.btnDom = document.getElementById('buttonsBox')
- })
- },
- // mounted() {
- // const ro = new ResizeObserver(entries => {
- // entries.forEach(entry => {
- // this.updatePlayerDomSize()
- // });
- // });
- // ro.observe(this.$refs.container);
- // },
- mounted() {
- this.updatePlayerDomSize()
- },
- destroyed() {
- if (jessibucaPlayer[this._uid]) {
- jessibucaPlayer[this._uid].destroy()
- }
- this.playing = false
- this.loaded = false
- this.performance = ''
- },
- methods: {
- updatePlayerDomSize() {
- const dom = this.$refs.container
- if (!dom) return;
- if (!this.parentNodeResizeObserver) {
- this.parentNodeResizeObserver = new ResizeObserver(entries => {
- this.updatePlayerDomSize()
- })
- this.parentNodeResizeObserver.observe(dom.parentNode)
- }
-
- // 获取父容器尺寸
- const boxWidth = dom.parentNode.clientWidth
- const boxHeight = dom.parentNode.clientHeight
-
- // 检查是否处于全屏状态
- const isFullscreen = this.isFullscreen();
- let width, height;
-
- if (isFullscreen) {
- // 全屏模式,使用窗口尺寸
- width = window.innerWidth;
- height = window.innerHeight;
- } else {
- // 非全屏模式,使用16:9比例
- width = boxWidth
- height = (9 / 16) * width
-
- // 如果计算出的高度超过容器高度,则以容器高度为基准重新计算宽度
- if (boxHeight > 0 && height > boxHeight) {
- height = boxHeight
- width = height * 16 / 9
- }
- }
-
- // 限制尺寸不超过视口
- const clientHeight = Math.min(document.body.clientHeight, document.documentElement.clientHeight)
- if (!isFullscreen && height > clientHeight) {
- height = clientHeight
- width = (16 / 9) * height
- }
-
- this.playerWidth = width
- this.playerHeight = height
-
- // 应用尺寸到容器
- dom.style.width = `${width}px`
- dom.style.height = `${height}px`
-
- // 如果播放器存在,更新播放器尺寸
- if (this.playing && jessibucaPlayer[this._uid]) {
- jessibucaPlayer[this._uid].resize(width, height)
- }
- },
-
- // 公共方法:调整大小
- resize() {
- this.updatePlayerDomSize()
- },
-
- // 判断是否处于全屏状态
- isFullscreen() {
- return document.fullscreenElement ||
- document.msFullscreenElement ||
- document.mozFullScreenElement ||
- document.webkitFullscreenElement || false
- },
- create() {
- const options = {
- container: this.$refs.container,
- autoWasm: true,
- background: '',
- controlAutoHide: false,
- debug: false,
- decoder: 'static/js/jessibuca/decoder.js',
- forceNoOffscreen: false,
- hasAudio: typeof (this.hasAudio) === 'undefined' ? true : this.hasAudio,
- heartTimeout: 5,
- heartTimeoutReplay: true,
- heartTimeoutReplayTimes: 3,
- hiddenAutoPause: false,
- hotKey: true,
- isFlv: false,
- isFullResize: false,
- isNotMute: this.isNotMute,
- isResize: true,
- keepScreenOn: true,
- loadingText: '请稍等, 视频加载中......',
- loadingTimeout: 10,
- loadingTimeoutReplay: true,
- loadingTimeoutReplayTimes: 3,
- openWebglAlignment: false,
- operateBtns: {
- fullscreen: false,
- screenshot: false,
- play: false,
- audio: false,
- record: false
- },
- recordType: 'mp4',
- rotate: 0,
- showBandwidth: false,
- supportDblclickFullscreen: false,
- timeout: 10,
- useMSE: true,
- useWCS: false,
- useWebFullScreen: true,
- videoBuffer: 0.1,
- wasmDecodeErrorReplay: true,
- wcsUseVideoRender: true
- }
- console.log('Jessibuca -> options: ', options)
- jessibucaPlayer[this._uid] = new window.Jessibuca({ ...options })
- const jessibuca = jessibucaPlayer[this._uid]
- const _this = this
- jessibuca.on('pause', function() {
- _this.playing = false
- })
- jessibuca.on('play', function() {
- _this.playing = true
- })
- jessibuca.on('fullscreen', function(msg) {
- _this.fullscreen = msg
- })
- jessibuca.on('mute', function(msg) {
- _this.isNotMute = !msg
- })
- jessibuca.on('performance', function(performance) {
- let show = '卡顿'
- if (performance === 2) {
- show = '非常流畅'
- } else if (performance === 1) {
- show = '流畅'
- }
- _this.performance = show
- })
- jessibuca.on('kBps', function(kBps) {
- _this.kBps = Math.round(kBps)
- })
- jessibuca.on('videoInfo', function(msg) {
- console.log('Jessibuca -> videoInfo: ', msg)
- })
- jessibuca.on('audioInfo', function(msg) {
- console.log('Jessibuca -> audioInfo: ', msg)
- })
- jessibuca.on('error', function(msg) {
- console.log('Jessibuca -> error: ', msg)
- })
- jessibuca.on('timeout', function(msg) {
- console.log('Jessibuca -> timeout: ', msg)
- })
- jessibuca.on('loadingTimeout', function(msg) {
- console.log('Jessibuca -> timeout: ', msg)
- })
- jessibuca.on('delayTimeout', function(msg) {
- console.log('Jessibuca -> timeout: ', msg)
- })
- jessibuca.on('playToRenderTimes', function(msg) {
- console.log('Jessibuca -> playToRenderTimes: ', msg)
- })
- },
- playBtnClick: function(event) {
- this.play(this.videoUrl)
- },
- play: function(url) {
- console.log('Jessibuca -> url: ', url)
- if (jessibucaPlayer[this._uid]) {
- this.destroy()
- }
- this.create()
- jessibucaPlayer[this._uid].on('play', () => {
- this.playing = true
- this.loaded = true
- this.quieting = jessibuca.quieting
- })
- if (jessibucaPlayer[this._uid].hasLoaded()) {
- jessibucaPlayer[this._uid].play(url)
- } else {
- jessibucaPlayer[this._uid].on('load', () => {
- jessibucaPlayer[this._uid].play(url)
- })
- }
- },
- pause: function() {
- if (jessibucaPlayer[this._uid]) {
- jessibucaPlayer[this._uid].pause()
- }
- this.playing = false
- this.err = ''
- this.performance = ''
- },
- screenshot: function() {
- if (jessibucaPlayer[this._uid]) {
- jessibucaPlayer[this._uid].screenshot()
- }
- },
- mute: function() {
- if (jessibucaPlayer[this._uid]) {
- jessibucaPlayer[this._uid].mute()
- }
- },
- cancelMute: function() {
- if (jessibucaPlayer[this._uid]) {
- jessibucaPlayer[this._uid].cancelMute()
- }
- },
- destroy: function() {
- if (jessibucaPlayer[this._uid]) {
- jessibucaPlayer[this._uid].destroy()
- }
- if (document.getElementById('buttonsBox') == null) {
- this.$refs.container.appendChild(this.btnDom)
- }
- jessibucaPlayer[this._uid] = null
- this.playing = false
- this.err = ''
- this.performance = ''
- },
- fullscreenSwich: function() {
- const isFull = this.isFullscreen()
-
- if (!isFull) {
- // 进入全屏
- try {
- const container = this.$refs.container;
-
- // 尝试使用HTML5全屏API
- if (container.requestFullscreen) {
- container.requestFullscreen();
- } else if (container.webkitRequestFullscreen) {
- container.webkitRequestFullscreen();
- } else if (container.msRequestFullscreen) {
- container.msRequestFullscreen();
- } else if (container.mozRequestFullScreen) {
- container.mozRequestFullScreen();
- } else {
- // 如果原生API不可用,使用Jessibuca的全屏API
- if (jessibucaPlayer[this._uid]) {
- jessibucaPlayer[this._uid].setFullscreen(true);
- }
- }
-
- // 设置全屏标志
- this.fullscreen = true;
- } catch (e) {
- console.error('全屏切换失败:', e);
- }
- } else {
- // 退出全屏
- try {
- if (document.exitFullscreen) {
- document.exitFullscreen();
- } else if (document.webkitExitFullscreen) {
- document.webkitExitFullscreen();
- } else if (document.msExitFullscreen) {
- document.msExitFullscreen();
- } else if (document.mozCancelFullScreen) {
- document.mozCancelFullScreen();
- } else {
- // 如果原生API不可用,使用Jessibuca的全屏API
- if (jessibucaPlayer[this._uid]) {
- jessibucaPlayer[this._uid].setFullscreen(false);
- }
- }
-
- // 设置全屏标志
- this.fullscreen = false;
- } catch (e) {
- console.error('退出全屏失败:', e);
- }
- }
-
- // 重新计算尺寸
- setTimeout(() => {
- this.updatePlayerDomSize();
- }, 300);
- }
- }
- }
- </script>
- <style>
- .jessibuca-container {
- width: 100%;
- height: 100%;
- background-color: #000000;
- margin: 0 auto;
- position: relative;
- overflow: hidden;
- }
- .jessibuca-container.jessibuca-fullscreen {
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw !important;
- height: 100vh !important;
- z-index: 9999;
- }
- .jessibuca-player-wrapper {
- width: 100%;
- padding-top: 56.25%;
- position: relative;
- }
- .buttons-box {
- width: 100%;
- height: 28px;
- background-color: rgba(43, 51, 63, 0.7);
- position: absolute;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- left: 0;
- bottom: 0;
- user-select: none;
- z-index: 10;
- }
- .jessibuca-btn {
- width: 20px;
- color: rgb(255, 255, 255);
- line-height: 27px;
- margin: 0px 10px;
- padding: 0px 2px;
- cursor: pointer;
- text-align: center;
- font-size: 0.8rem !important;
- }
- .buttons-box-right {
- position: absolute;
- right: 0;
- }
- </style>
|