Browse Source

播放器 params.videoObj

release_0.0.2
巴林闲侠 3 years ago
parent
commit
a9ced94fc7
  1. 26
      code/VideoAccess-VCMP/web/client/src/components/videoPlayer/videoPlay.jsx
  2. 4
      code/VideoAccess-VCMP/web/client/src/sections/monitor/containers/videoPlayCross.jsx

26
code/VideoAccess-VCMP/web/client/src/components/videoPlayer/videoPlay.jsx

@ -19,19 +19,19 @@ const VideoPlay = ({
// playUrl, // playUrl,
name, name,
// videoObj, videoObj,
videoObj = { // videoObj = {
type: 'yingshi', // type: 'yingshi',
audio: false, // audio: false,
serialNo: 'G75922040', // // serialNo: 'G75922040', //
channelNo: 1, // // channelNo: 1, //
yingshiToken: 'at.3j6eyqbn0g5xvcut73v0rzdu1nh0gnxx-4ua03m82o9-12u1t9g-rtzndpyds', // // yingshiToken: 'at.3j6eyqbn0g5xvcut73v0rzdu1nh0gnxx-4ua03m82o9-12u1t9g-rtzndpyds', //
playUrlSd: 'ezopen://open.ys7.com/G75922040/1.live', // // playUrlSd: 'ezopen://open.ys7.com/G75922040/1.live', //
// playUrl: 'ws://221.230.55.27:8081/jessica/34020000001110000077/34020000001310000003', // // playUrl: 'ws://221.230.55.27:8081/jessica/34020000001110000077/34020000001310000003',
playUrlHd: 'ezopen://open.ys7.com/G75922040/1.hd.live', // playUrlHd: 'ezopen://open.ys7.com/G75922040/1.hd.live',
// replayUrl: 'ezopen://open.ys7.com/G75922040/1.rec', // // replayUrl: 'ezopen://open.ys7.com/G75922040/1.rec',
}, // },
// videoObj = { // videoObj = {
// type: 'cascade', // type: 'cascade',

4
code/VideoAccess-VCMP/web/client/src/sections/monitor/containers/videoPlayCross.jsx

@ -11,7 +11,9 @@ const VideoPlayCross = (props) => {
if (props.location.search) { if (props.location.search) {
const params = qs.parse(props.location.search.slice(1)) const params = qs.parse(props.location.search.slice(1))
if (params.videoObj) { if (params.videoObj) {
params.videoObj = (new Function("return " + params.videoObj))() console.log(params.videoObj);
// params.videoObj = (new Function("return " + params.videoObj))()
params.videoObj = JSON.parse(params.videoObj)
setVideoParams(params) setVideoParams(params)
return return
} }

Loading…
Cancel
Save