<!DOCTYPE html>
|
<html lang="zh-CN">
|
|
<head>
|
<meta charset="UTF-8">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta name="renderer" content="webkit">
|
<title>视频监控</title>
|
<link rel="stylesheet" href="css/reset.css">
|
<link rel="stylesheet" href="css/index.css">
|
<style>
|
.video_box, #vmyPlayer1, video{width:100%; height:100%;}
|
</style>
|
</head>
|
<body>
|
<div class="video-pup"></div>
|
</body>
|
<script type="text/javascript" src="js/jquery-3.2.1.js"></script>
|
<script type="text/javascript" src="js/ezuikit.js"></script>
|
<script type="text/javascript" src="js/layui/layui.js"></script>
|
<script>
|
$(function(){
|
var pathUrl = (window.location.href).split('?')[1];
|
strId = (pathUrl.split('=')[1]).split("&")[0];
|
var source = '<source src="rtmp://rtmp.open.ys7.com/openlive/'+source+'" type="rtmp/flv" />';
|
var Str1 = '<div class="video_box" id="vvideobox1'+'">'+
|
'<video id="vmyPlayer1'+'" width="700" height="500" poster="http://open.ys7.com/asdf.jpg" controls playsInline webkit-playsinline autoplay>'+source+'</video>'+
|
'</div>';
|
$(".video-pup").html(Str1);
|
var player = new EZUIPlayer("vmyPlayer1");
|
});
|
</script>
|
</html>
|