日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 前端技术 > vue >内容正文

vue

vue-video-player集成videojs-contrib-hls实现.m3u8文件播放

發(fā)布時(shí)間:2025/5/22 vue 59 豆豆
生活随笔 收集整理的這篇文章主要介紹了 vue-video-player集成videojs-contrib-hls实现.m3u8文件播放 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
// 安裝依賴 npm install vue-video-player --save npm install videojs-contrib-hls --save// 在main.js中全局引入 import VideoPlayer from 'vue-video-player'; import 'video.js/dist/video-js.css'; import 'vue-video-player/src/custom-theme.css'; import videojs from 'video.js'; window.videojs = videojs; require('videojs-contrib-hls/dist/videojs-contrib-hls.js');Vue.use(VideoPlayer);//組件中使用 <template><md-card><md-card-actions><div class="md-subhead"><span>HLS Live / 直播</span></div><md-button class="md-icon-button"target="_blank"href="https://github.com/surmon-china/vue-video-player/tree/master/examples/04-video.vue"><md-icon>code</md-icon></md-button></md-card-actions><md-card-media><div class="item"><div class="player"><video-player class="vjs-custom-skin" :options="playerOptions" @ready="playerReadied"></video-player></div></div></md-card-media></md-card> </template><script>export default {data() {return {playerOptions: {// videojs and plugin optionsheight: '360',sources: [{withCredentials: false,type: "application/x-mpegURL",src: "path-to/playlist.m3u8"}],controlBar: {timeDivider: false,durationDisplay: false},flash: { hls: { withCredentials: false }},html5: { hls: { withCredentials: false }},poster: "path-to/static/images/surmon-5.jpg"}}},methods: {playerReadied(player) {var hls = player.tech({ IWillNotUseThisInPlugins: true }).hlsplayer.tech_.hls.xhr.beforeRequest = function(options) {// console.log(options)return options}}}} </script>

  

轉(zhuǎn)載于:https://www.cnblogs.com/ImaY/p/9040162.html

總結(jié)

以上是生活随笔為你收集整理的vue-video-player集成videojs-contrib-hls实现.m3u8文件播放的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。