You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

63 lines
1.6 KiB

<!--
版本声明
* 由于 WanlLiveWanlChat以下代码开发难度较大已将相关代码独立申请著作权受法律保护
* 无论你购买任何版本均不允许复制到第三方直接间接使用且也不能以学习为目的参考和借鉴
* 你仅有在 WanlShop 中使用二次开发权利否则我们会追究法律责任
* 深圳前海万联科技有限公司 @www.i36k.com
-->
<template>
<view style="flex: 1;">
<!-- #ifndef H5 -->
<!-- 基本所有小程序都支持m3u8但m3u8延迟较高App使用rtmp -->
<video
:style="{ height: screenHeight + 'px',width: screenWidth + 'px'}"
:src="source"
:controls="false"
object-fit="fill"
loop
autoplay
></video>
<!-- #endif -->
<!-- #ifdef H5 -->
<!-- 因Flash业务调整Flash播放已停止更新很遗憾不能使用rtmp播放可以选择m3u8flv -->
<wanl-player
:autoplay="true"
:playsinline="true"
:source="source"
:height="screenHeight + 'px'"
:videoHeight="screenHeight + 'px'"
:width="screenWidth + 'px'"
videoWidth="auto"
:skinLayout="skinLayout"
:preload="true"
:isLive="true"
></wanl-player>
<!-- #endif -->
</view>
</template>
<script>
export default {
name: "wanlLivePlay",
props: {
screenHeight: {
default: 0
},
screenWidth: {
default: 0
},
source: {
type: String,
default: ''
}
},
data() {
return {
skinLayout: [{name: "bigPlayButton", align: "blabs", x: this.screenWidth/2 - 30, y: this.screenHeight/2 - 30}]
};
},
};
</script>
<style>
</style>