vue2.0+vue-dplayer实现hls播放

vue2.0+vue-dplayer实现hls播放

开始

安装依赖

npm install vue-dplayer -S

1,编写组件HelloWorld.vue

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

<script>
import VueDPlayer from ‘./VueDPlayerHls‘;
import logoImg from ‘@/assets/logo.png‘;
export default {
 name: ‘HelloWorld‘,
 data () {
  return {
   video: {
     quality: [{
        name: ‘240P‘,
        url: ‘https://video-dev.github.io/streams/x36xhzz/x36xhzz.m3u8‘,
     },{
        name: ‘360P‘,
        url: ‘https://video-dev.github.io/streams/x36xhzz/x36xhzz.m3u8‘,
     },{
        name: ‘720P‘,
        url: ‘https://video-dev.github.io/streams/x36xhzz/x36xhzz.m3u8‘,
     }],
     pic: ‘http://static.smartisanos.cn/pr/img/video/video_03_cc87ce5bdb.jpg‘,
     defaultQuality: 1,
     thumbnails: logoImg,
     type: ‘hls‘
    },
    lang: ‘zh-cn‘,
    logo: logoImg,
    autoplay: false,
    player: null,
    contextmenu: [
      {
        text: ‘博客园‘,
        link: ‘http://www.cnblogs.com/maqingyuan/‘
      },{
        text: ‘博客园‘,
        link: ‘http://www.cnblogs.com/maqingyuan/‘
      },{
        text: ‘博客园‘,
        link: ‘http://www.cnblogs.com/maqingyuan/‘
      }
    ]
  }
 },
 components: {
  ‘d-player‘: VueDPlayer
 },
 methods: {
  play() {
    // console.log(‘开始播放...‘)
   }
 },
 mounted() {
  // this.player = this.$refs.player.dp;
  // console.log(this.player);
  // var hls = new Hls();
  // hls.loadSource(‘https://video-dev.github.io/streams/x36xhzz/x36xhzz.m3u8‘);
  // hls.attachMedia(this.player);
 }
}
</script>

<style scoped>
h1, h2 {
  font-weight: normal;
}
ul {
  list-style-type: none;
  padding: 0;
}
li {
  display: inline-block;
  margin: 0 10px;
}
a {
  color: #42b983;
}
.hello{
    width: 750px;
    margin: 0 auto 50px;
}
@media only screen and (max-width: 640px){
  .hello{
      width: 100%;
  }
}
</style>

2,引入hls.js (在main.js引入)

window.Hls = require(‘hls.js‘);

3,自定义一个组件VueDPlayerHls.vue

<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: false
   },
   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: {
     pic: this.video.pic,
     defaultQuality: this.video.defaultQuality,
     quality: [{
       url: this.video.quality[0].url,
       name: this.video.quality[0].name
     },{
       url: this.video.quality[1].url,
       name: this.video.quality[1].name
     },{
       url: this.video.quality[2].url,
       name: this.video.quality[2].name
     }],
     thumbnails: this.video.thumbnails,
     type: this.video.type
    }
   })
   player.on(‘play‘, () => {
    this.$emit(‘play‘)
   })
   player.on(‘quality_start‘, () => {
    this.$emit(‘quality_start‘)
    player.on(‘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>
<style scoped>

</style>

4,实现播放(如下图) :

最后

github地址:https://github.com/whiskyma/vue-dplayer

以上就是本文的全部内容,希望对大家的学习有所帮助,谢谢大家,记得点赞哦!!!

原文地址:https://www.cnblogs.com/maqingyuan/p/9310467.html

时间: 2024-11-01 11:10:50

vue2.0+vue-dplayer实现hls播放的相关文章

vue2.0 vue.extend()的拓展

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <script type="text/javascript" src="vue2.2.js"></script> <title>vue.extend-扩展实例构造器</title> </head>

vue2.0 vue.set()

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <script type="text/javascript" src="vue2.2.js"></script> <title>Vue.set 全局操作</title> </head> <b

Vue.js系列之项目搭建(vue2.0 + vue-cli + webpack )

1.安装node node.js环境(npm包管理器) cnpm npm的淘宝镜像 从node.js官网下载并安装node,安装过程很简单,一路"下一步"就可以了(傻瓜式安装).安装完成之后,打开命令行工具,输入 node -v,如果出现相应的版本号,则说明安装成功. npm包管理器,是集成在node中的,所以,直接输入 npm -v就会显示出npm的版本信息. 2.安装cnpm 在命令行中输入 npm install -g cnpm --registry=http://registr

Vue2.0总结———vue使用过程常见的一些问题

Vue目前的的开发模式主要有两种: 1.直接页面级的开发,script直接引入Vue 2.工程性开发,webpack+loader或者直接使用脚手架工具Vue-cli,里面的文件都配置好了 webpack可以进行配置,配置多文件入口,进行多页面开发 第二种Vue开发,结合webpack打包完文件会很大,怎么解决这个问题? 1.webpack代码拆分:code-spliting 2.提取公共(如提取css,js) 3.预渲染:使用prerender-spa-plugin插件 4.后台----开启压

Vue2.0与 [百度地图] 结合使用———vue+webpack+axios+百度地图实现组件之间的通信

Vue2.0与 [百度地图] 结合使用: 1.vue init webpack-simple vue-baidu-map 2.下载axios cnpm install axios; 3.在main.js中引入axios,并使用 import axios from 'axios' /* 把axios对象挂到Vue实例上面,其他组件在使用axios的时候直接 this.$http就可以了 */ Vue.prototype.$http = axios; 4.引入百度地图的js秘钥--->最好在inde

vue2.0实践 —— Node + vue 实现移动官网

简介 使用 Node + vue 对公司的官网进行了一个简单的移动端的实现. 源码 https://github.com/wx1993/node-vue-fabaocn 效果 组件 轮播图(使用 vue-awesome-swiper 插件) 新闻列表 新闻详情 职位列表 联系我们页面(使用百度地图api) 技术 Express.Vue.Vue-Router.Vue-Resource.Webpack Vue vue 的组件化思想和 React 很像,一个 vue 组件将 html.css 和 js

Vue2.0 注册过滤器Vue.filter

Vue.filter( id, [definition] ) 参数: {string} id {Function} [definition] 用法: 注册或获取全局过滤器 1 // 注册 2 Vue.filter('my-filter', function (value) { 3 // 返回处理后的值 4 }) 5 // getter,返回已注册的过滤器 6 var myFilter = Vue.filter('my-filter') 根据上一遍笔记,可以在新的Vue2.0里面注册过滤器

Vue2.0笔记——Vue实例

Vue实例 每个 Vue 应用都是通过用 Vue 函数创建一个新的 Vue 实例开始的: var vm = new Vue({ // 选项 }) 当创建一个 Vue 实例时,你可以传入一个选项对象,就如前面所提到的如:data,methods,computed,watch等等.一个 Vue 应用由一个通过 new Vue 创建的根 Vue 实例,以及可选的嵌套的.可复用的组件树组成.举个例子,一个 todo 应用的组件树可以是这样的: 根实例Root └─ TodoList ├─ TodoIte

基于Vue2.0的音乐播放器——歌手模块(拿不到数据)

来这里的都可能在看,慕课网vue2.0 的音乐播放器的相关页面,如果使用视频介绍的方法,相当于现在来说是获取数据回报如下的错误: {code: -500001, ts: 1529809544209} code : -500001 ts : 1529809544209 原因也简单:最新的vue2.0 webpack模板中没有dev-server.js文件,进行后台数据的模拟获取,只需要使用从接口获取数据后放在本地进行代理,页面就能拿到代理的数据了具体操作如下: before(app) { app.