vue3 --- EasyPlayer 播放m3u8格式文件

1,179 阅读1分钟
  1. npm i @easydarwin/easyplayer -S
  2. 将node_modules/@easydarwin/easyplayer/dist/element/EasyPlayer-element.min.js复制到静态文件public中
  3. 在index.html中引入EasyPlayer-element.min.js
  4. 在页面使用:easy-player
<easy-player
      video-url="xxx.m3u8"
      live="true"
      show-custom-button="false"
      isH265="true"
      fluent
      ref="playerRef"
      class="player"
    ></easy-player>

注意这样写不行:EasyPlayer

<EasyPlayer
      video-url="xxx.m3u8"
      live="true"
      show-custom-button="false"
      isH265="true"
      fluent
      ref="playerRef"
      class="player"
    ></EasyPlayer>