vue 2.0+vue-dplayer 가 hls 재생 을 실현 하 는 예제

6027 단어 vuevideoplayerhls
원인
앞서'vue 2.0+vue-video-player hls 재생 실현'를 썼 는데 vue-video-player 를 사용 하기 전에 vue-dplayer 를 사용 하여 hls 재생 을 실현 하려 고 했 지만 시간 이 촉박 하고 완성 되 지 않 아 방안 을 바 꾸 었 다.지금 시간 을 내 서 그것 을 고 쳐 라.
시작 하 다
설치 의존

npm install vue-dplayer -S
구성 요소 작성 HelloWorld.vue

<template>
 <div class="hello">
  <d-player ref="player" @play="play" :video="video" :contextmenu="contextmenu"></d-player>
 </div>
</template>

<script>
import VueDPlayer from './VueDPlayerHls';
export default {
 name: 'HelloWorld',
 data () {
  return {
   msg: 'Welcome to Your Vue.js App',
   video: {
     url: 'https://logos-channel.scaleengine.net/logos-channel/live/biblescreen-ad-free/chunklist_w630020335.m3u8',
     pic: 'http://static.smartisanos.cn/pr/img/video/video_03_cc87ce5bdb.jpg',
     type: 'hls'
    },
    autoplay: false,
    player: null,
    contextmenu: [
      {
        text: 'GitHub',
        link: 'https://github.com/MoePlayer/vue-dplayer'
      }
    ]
  }
 },
 components: {
  'd-player': VueDPlayer
 },
 methods: {
  play() {
    console.log('play callback')
   }
 },
 mounted() {
  this.player = this.$refs.player.dp;
  // console.log(this.player);
  var hls = new Hls();
  hls.loadSource('https://logos-channel.scaleengine.net/logos-channel/live/biblescreen-ad-free/chunklist_w630020335.m3u8');
  hls.attachMedia(this.player);
 }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>
hls.js 도입
import 도입 을 사 용 했 는데 오류 가 발생 했 습 니 다.그래서 index.html 에 script 태그 로 먼저 들 어 옵 니 다.

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <title>vue-dplayer-hls</title>
 </head>
 <body>
  <div id="app"></div>
  <!-- built files will be auto injected -->
  <script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
 </body>
</html>
주의:
DPlayer Demo페이지 코드 에 따라 hls 를 지원 하려 면 video.type 을'hls'로 설정 해 야 하 는데 수정 한 후에 재생 할 수 없습니다.그래서 소스 코드 를 보 러 갔 는데 소스 코드 안에 이런 곳 이 있 는 것 을 발견 했다.
这里写图片描述
즉,당신 이 자신의 구성 요소 에 무엇 을 썼 든 지 간 에 사실은'normal'을 사용 하여 new 의 Dplayer 인 스 턴 스 를 사용 한 것 입 니 다.
원본 코드 수정
구성 요소 VueDPlayerHls.vue 를 사용자 정의 한 다음 copy 소스 코드 를 사용 합 니 다.문 제 는 type:this.video.type 입 니 다.

<template>
 <div class="dplayer"></div>
</template>

<script>
 require('../../node_modules/dplayer/dist/DPlayer.min.css');
 import DPlayer from 'DPlayer'
 export default {
  props: {
   autoplay: {
    type: Boolean,
    default: false
   },
   theme: {
    type: String,
    default: '#FADFA3'
   },
   loop: {
    type: Boolean,
    default: true
   },
   lang: {
    type: String,
    default: 'zh'
   },
   screenshot: {
    type: Boolean,
    default: false
   },
   hotkey: {
    type: Boolean,
    default: true
   },
   preload: {
    type: String,
    default: 'auto'
   },
   contextmenu: {
    type: Array
   },
   logo: {
    type: String
   },
   video: {
    type: Object,
    required: true,
    validator(value) {
     return typeof value.url === 'string'
    }
   }
  },
  data() {
   return {
    dp: null
   }
  },
  mounted() {
   const player = this.dp = new DPlayer({
    element: this.$el,
    autoplay: this.autoplay,
    theme: this.theme,
    loop: this.loop,
    lang: this.lang,
    screenshot: this.screenshot,
    hotkey: this.hotkey,
    preload: this.preload,
    contextmenu: this.contextmenu,
    logo: this.logo,
    video: {
     url: this.video.url,
     pic: this.video.pic,
     type: this.video.type
    }
   })
   player.on('play', () => {
    this.$emit('play')
   })
   player.on('pause', () => {
    this.$emit('pause')
   })
   player.on('canplay', () => {
    this.$emit('canplay')
   })
   player.on('playing', () => {
    this.$emit('playing')
   })
   player.on('ended', () => {
    this.$emit('ended')
   })
   player.on('error', () => {
    this.$emit('error')
   })
  }
 }
</script> 
원본 구성 요소(HelloWorld.vue)에서 import 새 구성 요소

import VueDPlayer from './VueDPlayerHls';
재생
这里写图片描述
마지막.
github 주소:https://github.com/PhillCheng/vue-dplayer-hls
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기