Monica视频监控处理程序
xc
2021-04-27 d8a274cd30024a992cbf757cb6738c96a373b368
src/main/resources/public/monitor/history.html
@@ -5,42 +5,33 @@
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Jessibuca【回放】</title>
    <meta charset="utf-8"/>
    <link rel="stylesheet" href="../css/progressTime.css">
    <link rel="stylesheet" href="../css/history/historyStyle.css">
    <link rel="stylesheet" href="css/progressTime.css">
    <link rel="stylesheet" href="css/history/historyStyle.css">
</head>
<body>
<!-- jessiebuca播放器 录像 -->
<div id="jessibucaContainerHistory"></div>
<script src="../js/renderer.js"></script>
<script src="../js/jquery.min.js"></script>
<script src="../js/jquery.progressTime.js"></script>
<script src="../js/history/historypler.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/ajax.js"></script>
<script src="js/renderer.js"></script>
<script src="js/jquery.progressTime.js"></script>
<script src="js/history/historyComponent.js"></script>
<script>
    window.onkeydown = function () {
        h5lc.fullscreen = false
    };
    let historypler =new Historypler({
    let historyComponent =new HistoryComponent({
        elem:"jessibucaContainerHistory",
        ffurl:"../js/jessibuca/ff.js",
        cameraId:"ff80808178af424e0178af44e677000343616d657261",
        rtspUrl:"rtsp://admin:12345...@192.168.1.201:554/Streaming/Channels/301",
    });
    //播放
    $(".progressTime-left-b-start").on("click", function () {
        //TODO:historypler.playVideo();
    });
    //暂停 关闭流
    $(".progressTime-left-b-start stop").on("click", function () {
        $(this).removeClass("stop");
        //TODO:historypler.closeVideo()
    });
    //关闭流
    //historyComponent.close();
</script>
</body>