| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <template>
- <div class="live-player">
- <!-- 修改:所有录播和回放都使用同一个video元素,MP4和HLS都支持 -->
- <video
- v-if="videoParam.liveType == 2 || videoParam.liveType == 3"
- ref="videoPlayer"
- :loop="videoParam.liveType == 2"
- autoplay
- class="player"
- >
- <!-- 去掉type,让浏览器自动检测 -->
- </video>
- <video
- v-if="videoParam.liveType == 1"
- ref="livePlayer"
- autoplay
- class="player"
- >
- </video>
- </div>
- </template>
- <script>
- import Hls from "hls.js";
- export default {
- name: 'LivePlayer',
- props: {
- videoParam: {
- type: Object,
- required: true,
- default: () => ({
- startTime: '',
- livingUrl: '',
- liveType: 1,
- videoUrl: ''
- }),
- }
- },
- data() {
- return {
- videoDuration: 0,
- startTime: 0,
- hls: null,
- liveHls: null // 分开管理直播和录播的HLS实例
- };
- },
- mounted() {
- this.initPlayer();
- },
- methods: {
- videoPlay(url) {
- const videoElement = this.$refs.videoPlayer;
- if (!videoElement) {
- console.error('找不到 video 元素');
- return;
- }
- // 判断是否是MP4格式
- const isMp4 = url.toLowerCase().endsWith('.mp4') ||
- url.toLowerCase().includes('.mp4?');
- // 判断是否是HLS格式(m3u8)
- const isHls = url.toLowerCase().endsWith('.m3u8') ||
- url.toLowerCase().includes('.m3u8?');
- if (isHls && Hls.isSupported()) {
- // HLS格式使用hls.js播放
- this.hls = new Hls();
- this.hls.attachMedia(videoElement);
- this.hls.on(Hls.Events.MEDIA_ATTACHED, () => {
- this.hls.loadSource(url);
- this.hls.on(Hls.Events.STREAM_LOADED, (event, data) => {
- videoElement.play();
- });
- });
- this.hls.on(Hls.Events.ERROR, (event, data) => {
- console.error('HLS 错误:', data);
- });
- // 录播的时间位置计算
- if (this.videoParam.liveType === 2) {
- videoElement.addEventListener('loadedmetadata', () => {
- this.videoDuration = videoElement.duration;
- this.updateVideoPosition(videoElement);
- });
- }
- } else if (isMp4 || !isHls) {
- // MP4格式或非HLS格式直接使用video元素播放
- videoElement.src = url;
- // 录播的时间位置计算
- if (this.videoParam.liveType === 2) {
- videoElement.addEventListener('loadedmetadata', () => {
- this.videoDuration = videoElement.duration;
- this.updateVideoPosition(videoElement);
- });
- }
- // 触发播放
- videoElement.load();
- videoElement.play().catch(e => {
- console.warn('自动播放失败:', e);
- });
- } else {
- // 不支持HLS的浏览器,尝试直接播放
- console.warn('浏览器不支持HLS,尝试直接播放');
- videoElement.src = url;
- videoElement.load();
- videoElement.play().catch(e => {
- console.warn('播放失败:', e);
- });
- }
- },
- updateVideoPosition(video) {
- const currentTime = new Date().getTime();
- this.startTime = new Date(this.videoParam.startTime).getTime();
- const elapsedTime = currentTime - this.startTime;
- if (elapsedTime < 0) {
- video.currentTime = 0;
- return;
- }
- const elapsedSeconds = elapsedTime / 1000;
- if (this.videoDuration > 0) {
- video.currentTime = elapsedSeconds % this.videoDuration;
- }
- },
- livePlay(url) {
- if (Hls.isSupported()) {
- const videoElement = this.$refs.livePlayer;
- if (!videoElement) {
- console.error('找不到 video 元素');
- return;
- }
- this.liveHls = new Hls();
- this.liveHls.attachMedia(videoElement);
- this.liveHls.on(Hls.Events.MEDIA_ATTACHED, () => {
- this.liveHls.loadSource(url);
- this.liveHls.on(Hls.Events.STREAM_LOADED, (event, data) => {
- videoElement.play();
- });
- });
- this.liveHls.on(Hls.Events.ERROR, (event, data) => {
- console.error('HLS 错误:', data);
- });
- } else {
- // 浏览器原生支持HLS(如Safari)
- const videoElement = this.$refs.livePlayer;
- if (videoElement.canPlayType('application/vnd.apple.mpegurl')) {
- videoElement.src = url;
- videoElement.play().catch(e => {
- console.warn('自动播放失败:', e);
- });
- } else {
- console.error('浏览器不支持 HLS');
- }
- }
- },
- initPlayer() {
- // 清理之前的实例
- if (this.hls) {
- this.hls.destroy();
- this.hls = null;
- }
- if (this.liveHls) {
- this.liveHls.destroy();
- this.liveHls = null;
- }
- if (this.videoParam.liveType === 1) {
- // 直播
- const isUrl = this.videoParam.livingUrl === null || this.videoParam.livingUrl.trim() === '';
- if (isUrl) {
- console.error('直播地址为空,无法初始化播放器');
- return;
- }
- this.$nextTick(() => {
- this.livePlay(this.videoParam.livingUrl);
- });
- return;
- }
- const viUrl = this.videoParam.videoUrl === null || this.videoParam.videoUrl.trim() === '';
- if (viUrl) {
- console.error('播放地址为空,无法初始化播放器');
- return;
- }
- if (this.videoParam.liveType === 2 || this.videoParam.liveType === 3) {
- // 录播或直播回放
- this.$nextTick(() => {
- this.videoPlay(this.videoParam.videoUrl);
- });
- } else {
- console.error('直播类型错误,无法初始化播放器');
- }
- }
- },
- watch: {
- // 监听videoParam变化,重新初始化播放器
- videoParam: {
- handler() {
- this.$nextTick(() => {
- this.initPlayer();
- });
- },
- deep: true
- }
- },
- beforeDestroy() {
- // 销毁HLS实例
- this.hls?.destroy();
- this.liveHls?.destroy();
- // 清理video元素
- const videoElements = [
- this.$refs.videoPlayer,
- this.$refs.livePlayer
- ];
- videoElements.forEach(video => {
- if (video) {
- video.pause();
- video.src = '';
- video.load();
- }
- });
- }
- };
- </script>
- <style scoped>
- .live-player {
- margin-bottom: 20px;
- }
- .player {
- width: 100%;
- height: auto;
- border-radius: 8px;
- max-height: 300px; /* 设置最大高度,避免过大 */
- object-fit: contain; /* 保持比例,不拉伸 */
- background-color: #000; /* 黑色背景,避免视频加载时显示白色 */
- }
- </style>
|