中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在vue中使用video實現一個播放器功能

發布時間:2021-02-19 14:16:38 來源:億速云 閱讀:533 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關如何在vue中使用video實現一個播放器功能,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

當現有video播放器不能滿足需求時,需要自己對video進行封裝。

video事件

  • loadstart: 在視頻開始加載時觸發,給currentTime賦值(歷史播放記錄或0)。

  • durationchange: 元信息已載入或已改變,視頻的長度發生了改變。獲取到視頻長度(duration,并給currentTime賦值(歷史播放記錄或0))。

  • playing: 在視頻開始播放時觸發(不論是初次播放、在暫停后恢復、或是在結束后重新開始)。

  • pause: 播放暫停時觸發。

  • timeupdate: currentTime改變, 更新播放進度。處理播放進度條

  • seeked: 指定播放位置

  • waiting: 緩沖

  • ended: 播放結束, 重置狀態

  • WeixinJSBridgeReady: 在微信中使用video,需要監聽weixinJSBridgeReady事件, 在回調函數里執行play()命令。

直播協議

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

/** HTML **/
<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>
/** js**/
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實現一個播放器功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

酉阳| 淮南市| 盱眙县| 桦甸市| 庆安县| 青阳县| 若尔盖县| 垫江县| 海南省| 丰城市| 莒南县| 惠东县| 南丰县| 高要市| 朔州市| 靖远县| 丰顺县| 巴林右旗| 登封市| 临潭县| 汽车| 阜新市| 闵行区| 远安县| 云梦县| 阜阳市| 通化县| 巨鹿县| 香港| 岢岚县| 集贤县| 阿拉善盟| 井冈山市| 图们市| 阜城县| 饶阳县| 健康| 洪江市| 长子县| 马龙县| 南安市|