video.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <script setup lang="ts">
  2. import { onMounted } from "vue";
  3. import { deviceDetection } from "@pureadmin/utils";
  4. import { useRenderIcon } from "@/components/ReIcon/src/hooks";
  5. import VideoPlay from "@iconify-icons/ep/video-play";
  6. import Player from "xgplayer";
  7. import "xgplayer/dist/index.min.css";
  8. defineOptions({
  9. name: "VideoPage"
  10. });
  11. onMounted(() => {
  12. new Player({
  13. id: "mse",
  14. lang: "zh",
  15. // 默认静音
  16. volume: 0,
  17. autoplay: false,
  18. screenShot: true,
  19. videoAttributes: {
  20. crossOrigin: "anonymous"
  21. },
  22. url: "//lf3-static.bytednsdoc.com/obj/eden-cn/nupenuvpxnuvo/xgplayer_doc/xgplayer-demo.mp4",
  23. poster:
  24. "//lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/byted-player-videos/1.0.0/poster.jpg",
  25. fluid: deviceDetection(),
  26. //传入倍速可选数组
  27. playbackRate: [0.5, 0.75, 1, 1.5, 2]
  28. });
  29. });
  30. </script>
  31. <template>
  32. <el-card shadow="never">
  33. <template #header>
  34. <div class="card-header">
  35. <span class="font-medium">
  36. 视频组件,采用开源的
  37. <el-link
  38. href="https://v3.h5player.bytedance.com/"
  39. target="_blank"
  40. :icon="useRenderIcon(VideoPlay)"
  41. style="margin: 0 4px 5px; font-size: 16px"
  42. >
  43. 西瓜播放器
  44. </el-link>
  45. </span>
  46. </div>
  47. </template>
  48. <div id="mse" />
  49. </el-card>
  50. </template>
  51. <style scoped>
  52. #mse {
  53. flex: auto;
  54. }
  55. </style>