文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何在vue中使用video实现一个播放器功能

2023-06-06 10:57

关注

这期内容当中小编将会给大家带来有关如何在vue中使用video实现一个播放器功能,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

当现有video播放器不能满足需求时,需要自己对video进行封装。

video事件

直播协议

HLS(HTTP Live Streaming)由Apple提出的直播流协议。IOS和高版本Android都支持HLS。HLS主要由.m3u8和.ts两种播放文件。HLS具有高兼容性,高可扩展性,但会直播延时。HLS协议是将直播流分成一段一段的小段视频去下载播放的,所以假设列表里面的包含5个ts文件,每个ts文件包含5秒的视频内容,那么整体的延迟就是25秒。

RTMP(Real Time Messaging Protocol)是Macromedia开发的一套视频直播协议,现在属于Adobe。RTMP基于flash无法在IOS的浏览器里播放,但是实时性比HLS要好。

HTTP-FLV针对于FLV视频格式做的直播分发流,延时低。但移动端不支持。

结论:HTTP-FLV延时低,优先使用。若设备不支持HTTP-FLV,使用flv.js。若设备不支持flv.js,则使用HLS,但HLS延迟大。

封装video

<div class="video"> <!-- video player --> <video  class="video__player"  ref="videoPlayer"  preload="auto"  :autoplay="options.autoplay"  :muted="options.muted"  webkit-playsinline="true"  playsinline="true"  x-webkit-airplay="allow"  x5-video-player-type="h6-page"  x5-video-orientation="portraint"   >  <source :src="options.src" /> </video> <!-- video poster --> <div  v-show="showPoster"  class="video__poster"  : ></div> <!-- video loading --> <div v-show="showLoading" class="video__Loading">  <span class="video__Loading-icon"></span> </div> <!-- video pause --> <div @click="handleVideoPlay" class="video__pause">  <span v-show="!videoPlay" class="video__pause-icon"></span> </div></div>
props: { options: {  type: Object,  default: () => {} }},data() { return {  videoPlay: false, // 是否正在播放  videoEnd: false, // 是否播放结束  showPoster: true, // 是否显示视屏封面  showLoading: false, // 加载中  currentTime: 0, // 当前播放位置  currentVideo: {   duration: this.options.duration  }, }},mounted() { this.videoPlayer = this.$refs.videoPlayer; this.videoPlayer.currentTime = 0;  this.videoPlayer.addEventListener("loadstart", e => {   this.videoPlayer.currentTime = (this.options.playProcess > 0) ? this.options.playProcess : 0; });   // 获取到视频长度 this.videoPlayer.addEventListener("durationchange", e => {  this.currentVideo.duration = this.videoPlayer.duration;  // 存在播放历史记录  this.videoPlayer.currentTime = (this.options.playProcess > 0) ? this.options.playProcess : 0; });  this.videoPlayer.addEventListener("playing", e => {  this.showPoster = false;  this.videoPlay = true;  this.showLoading = false;  this.videoEnd = false; });  // 暂停 this.videoPlayer.addEventListener("pause", () => {  this.videoPlay = false;  if (this.videoPlayer.currentTime < 0.1) {   this.showPoster = true;  }  this.showLoading = false; });  // 播放进度更新 this.videoPlayer.addEventListener("timeupdate", e => {   this.currentTime = this.videoPlayer.currentTime;  },  false ); // 指定播放位置 this.videoPlayer.addEventListener("seeked", e => { }); // 缓冲 this.videoPlayer.addEventListener("waiting", e => {  this.showLoading = true; });  // 播放结束 this.videoPlayer.addEventListener("ended", e => {  // 重置状态  this.videoPlay = false;  this.showPoster = true;  this.videoEnd = true;  this.currentTime = this.currentVideo.duration; });  // 监听weixinJSBridgeReady事件,处理微信不能自动播放。但并不全部适用,加了暂停按钮,手动播放。 document.addEventListener('WeixinJSBridgeReady', () => {   this.videoPlayer.play(); }, false);},methods: { handleVideoPlay() {  if (this.videoPlayer.paused) { // 播放   if(this.videoEnd) { // 重播    this.currentTime = 0;    this.videoPlayer.currentTime = 0;   }   this.videoPlayer.play();   this.videoPlay = true;  } else { // 暂停   this.videoPlayer.pause();   this.videoPlay = false;  } }}

上述就是小编为大家分享的如何在vue中使用video实现一个播放器功能了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯