uniapp中播放m3u8直播流使用videojs策略(vue2)

vue文件

<template>
	<view class="tabs">
		<view class="video-js" ref="video" style="width: 100%; height: 100%"></view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				ons: false,
				player: null,
			}
		},
		onReady() {
			let video = document.createElement('video')
			video.id = 'video'
			video.style = 'width: 100%; height: 100%;'
			video.controls = true
			video.setAttribute('playsinline', true) //IOS微信浏览器支持小窗内播放
			video.setAttribute('webkit-playsinline', true) //这个bai属性是ios 10中设置可以让视频在小du窗内播放,也就是不是全zhi屏播放的video标签的一个属性
			video.setAttribute('x5-video-player-type', 'h5') //安卓 声明启用同层H5播放器 可以在video上面加东西
			let source = document.createElement('source')
			source.src =
				'm3u8地址'
			source.type = 'application/x-mpegURL'
			video.appendChild(source)
			this.$refs.video.$el.appendChild(video)
			let that = this
			that.player = videojs(
				'video', {
					poster: '', // 视频封面图地址
					title: '',
					playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
					autoDisable: true,
					preload: true, //auto - 当页面加载后载入整个视频 meta - 当页面加载后只载入元数据 none - 当页面加载后不载入视频
					language: 'zh-CN',
					fluid: true, // 自适应宽高
					muted: true, //  是否静音
					aspectRatio: '16:9', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9""4:3")
					controls: true, //是否拥有控制条 【默认true】,如果设为false ,那么只能通过api进行控制了。也就是说界面上不会出现任何控制按钮
					autoplay: true, //如果true,浏览器准备好时开始回放。 autoplay: "muted", // //自动播放属性,muted:静音播放
					loop: true, // 导致视频一结束就重新开始。 视频播放结束后,是否循环播放
					// techOrder: ["html5"], //播放顺序
					screenshot: true,
					controlBar: {
						volumePanel: {
							//声音样式
							inline: false, // 不使用水平方式
						},
						timeDivider: true, // 时间分割线
						durationDisplay: true, // 总时间
						progressControl: true, // 进度条
						remainingTimeDisplay: true, //当前以播放时间
						fullscreenToggle: true, //全屏按钮
						pictureInPictureToggle: true, //画中画
					},
				},
				function() {
					this.on('error', function() {
						//请求数据时遇到错误
						console.log('请求数据时遇到错误')
					})
					this.on('stalled', function() {
						//网速失速
						console.log('网速失速')
					})
					this.on('play', function() {
						//开始播放
						console.log('开始播放')
					})
					this.on('pause', function() {
						//暂停
						console.log('暂停')
					})
					this.on('timeupdate', function() {})
				}
			)
		},
	}
</script>

<style></style>

2.新建一个video.html模版文件在项目下,避免与index.html冲突,影响样式(踩过坑)
video.html里面代码

<!DOCTYPE html>
<html lang="zh-CN">
	<head>
		<meta charset="utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<meta name="viewport"
			content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
		<title>
			<%= htmlWebpackPlugin.options.title %>
		</title>
		<script>
			document.addEventListener('DOMContentLoaded', function() {
				document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
			})
		</script>
		<link rel="stylesheet" href="<%= BASE_URL %>static/index.css" />
	</head>
	<body>
		<noscript>
			<strong>Please enable JavaScript to continue.</strong>
		</noscript>
		<link href="https://cdn.bootcss.com/video.js/6.3.3/video-js.min.css" rel="stylesheet">
		<script src="https://cdn.bootcss.com/video.js/6.3.3/video.min.js"></script>
		<script src="https://cdn.bootcss.com/videojs-contrib-hls/5.11.0/videojs-contrib-hls.js"></script>
		<div id="app"></div>

	</body>
</html>

3.在manifest.json中配置一下模版
在这里插入图片描述

ps:如果在内置浏览器播放不起,可以运行到外部浏览器再试试

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值