wangrong
2025-09-23 40634ebaf5863a599bba8ca2c0575ca079fb8e15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html>
 
<head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
    <title>dufeng video</title>
    <link rel="stylesheet" type="text/css" href="video/demo.css">
</head>
<style>
    * {
        margin: 0;
        border: 0;
        padding: 0;
    }
    body,
    html,
    video {
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
 
    video {
        object-fit: cover;
    }
</style>
 
<!--网页播放器-->
<script src="xgplayer.js" charset="utf-8"></script>
<!-- flvjs(ios暂不支持) -->
<script src="srcflv.js" charset="utf-8"></script>
 
<body>
    <div class="mainContainer">
        <div class="video-container">
            <div id="wssFlvVideo" width="100%" height="100%" class="centeredVideo">
            </div>
        </div>
    </div>
</body>
<script type="text/javascript">
    new window.FlvJsPlayer({
        id: 'wssFlvVideo',
        isLive: false,
        playsinline: true,
        url: 'ws://admin:admin@10.7.145.32:9080/live/main.flv',
        autoplay: true,
        height: window.innerHeight,
        width: window.innerWidth
    });
//url: 'ws://admin:admin@10.5.226.22:9080/live/main.flv',
</script>
</html>