Browse Source

视频要被动播放

dev
巴林闲侠 1 year ago
parent
commit
a942fcd307
  1. 45
      web/client/src/components/ysPlayerIframe.js
  2. 16
      web/client/src/sections/quanju/containers/footer/build/videoMonitor.js
  3. 21
      web/client/src/sections/quanju/containers/footer/leadership/left/left-center.js
  4. 14
      web/client/src/sections/quanju/containers/footer/leadership/right/hudongVideo.js

45
web/client/src/components/ysPlayerIframe.js

@ -4,30 +4,49 @@
*/
'use strict';
import React from 'react';
import React, { useState } from 'react';
import { connect } from 'react-redux';
import { PlayCircleTwoTone } from '@ant-design/icons'
const YSIframePlayer = props => {
const { containerId, height, width, url, autoplay, audio, videoState, ysToken } = props;
const [play, setPlay] = useState(false)
const at = ysToken
if (!url || !at) return null;
const src = `https://open.ys7.com/ezopen/h5/iframe?audio=${audio ? '1' : '0'}&url=${url}&autoplay=${autoplay || 1}&accessToken=${at}`
// const src = `https://open.ys7.com/ezopen/h5/iframe?audio=${audio ? '1' : '0'}&url=${url}&autoplay=${autoplay || 1}&accessToken=${at}`
// const src = `https://open.ys7.com/ezopen/h5/iframe?audio=1&url=${url}&autoplay=${autoplay || 1}&accessToken=${at}`
const src = `https://open.ys7.com/ezopen/h5/iframe?audio=${audio ? '1' : '0'}&url=${url}&autoplay=${play ? '1' : "0"}&accessToken=${at}`
return (
<div
style={{ position: 'relative', height: '100%', width: '100%' }}>
<iframe
frameBorder="0"
id={containerId || 'myPlayer'}
src={src}
// https://open.ys7.com/doc/zh/book/index/live_proto.html 单个播放器的长宽比例限制最小为{width: 400px;height: 300px;}
width={width || 400}
height={height || 300}
allowFullScreen
wmode="transparent"
>
</iframe>
{
play == false ?
<div style={{
height: width || 300, width: width || 400, position: 'absolute', top: 0, background: '#000',
display: 'flex', justifyContent: 'center', alignItems: 'center', color: '#fff'
}}>
<PlayCircleTwoTone style={{ fontSize: 48 }} onClick={() => {
setPlay(true)
}} />
</div>
:
<iframe
frameBorder="0"
id={containerId || 'myPlayer'}
src={src}
// https://open.ys7.com/doc/zh/book/index/live_proto.html 单个播放器的长宽比例限制最小为{width: 400px;height: 300px;}
width={width || 400}
height={height || 300}
allowFullScreen
wmode="transparent"
>
</iframe>
}
{
videoState && videoState.status == 0 ?
<div style={{

16
web/client/src/sections/quanju/containers/footer/build/videoMonitor.js

@ -26,14 +26,14 @@ const videoMonitor = (props) => {
}
useEffect(() => {
const timer = setInterval(() => {
if (pageLeft + 1 < Math.ceil(videoCenterList?.length / 3)) {
setPageLeft(pageLeft + 1)
} else {
setPageLeft(0)
}
}, 1000 * 60 * 5);
return () => clearInterval(timer);
// const timer = setInterval(() => {
// if (pageLeft + 1 < Math.ceil(videoCenterList?.length / 3)) {
// setPageLeft(pageLeft + 1)
// } else {
// setPageLeft(0)
// }
// }, 1000 * 60 * 5);
// return () => clearInterval(timer);
}, [pageLeft]);

21
web/client/src/sections/quanju/containers/footer/leadership/left/left-center.js

@ -28,16 +28,16 @@ const Leftcenter = ({ videoCenterList }) => {
}, [videoCenterList])
useEffect(() => {
const timer = setInterval(() => {
if (num == list.length) {
setNum(1);
// setTu(list[0].img);
} else {
setNum(num + 1);
// setTu(list[num].img);
}
}, 1000 * 60 * 5);
return () => clearInterval(timer);
// const timer = setInterval(() => {
// if (num == list.length) {
// setNum(1);
// // setTu(list[0].img);
// } else {
// setNum(num + 1);
// // setTu(list[num].img);
// }
// }, 1000 * 60 * 5);
// return () => clearInterval(timer);
}, [num]);
const renderBody = () => {
@ -98,6 +98,7 @@ const Leftcenter = ({ videoCenterList }) => {
// height={410}
// width={310}
url={`ezopen://open.ys7.com/${item.deviceSerial}/${item.channelNo || '1'}.hd.live`}
// url={`ezopen://open.ys7.com/${item.deviceSerial}/${item.channelNo || '1'}.live`}
audio="0"
ysToken={item.token}
videoState={{

14
web/client/src/sections/quanju/containers/footer/leadership/right/hudongVideo.js

@ -163,13 +163,13 @@ class ReactCarousel extends Component {
clearInterval(timer);
}
start = () => { //开始
let { timer } = this.state;
timer = setInterval(() => {
this.next();
}, 1000 * 60 * 5);
this.setState({
timer
})
// let { timer } = this.state;
// timer = setInterval(() => {
// this.next();
// }, 1000 * 60 * 5);
// this.setState({
// timer
// })
}
change = (index) => { //点击下面的按钮切换当前显示的图片
let { showIndex } = this.state;

Loading…
Cancel
Save