demo-webrtc.html
4.86 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Jessica webrtc demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script src="./vconsole.js"></script>
<script src="./jessibuca-pro-demo.js"></script>
<link rel="stylesheet" href="./demo.css">
<style>
.container-shell:before {
content: "jessibuca pro webrtc demo";
}
</style>
</head>
<body class="page">
<div class="root">
<div class="container-shell">
<div id="container"></div>
<div class="input">
<div>
<span>M7S的webrtc地址:</span>webrtc://localhost:8080/webrtc/play/live/test <br>
<span style="color: red">注意 'live/test' 是streamPath</span>
</div>
</div>
<div class="input">
<div>
<span>ZLM的webrtc地址:</span>http://127.0.0.1/index/api/webrtc?app=live&stream=test&type=play <br>
<span style="color:red;">注意:将zlm的webrtc播放地址,https:// 修改为 webrtc:// 就可以了</span>即:webrtc://127.0.0.1/index/api/webrtc?app=live&stream=test&type=play
</div>
</div>
<div class="input">
<div>
<span>SRS的webrtc地址:</span>webrtc://127.0.0.1/live/livestream <br>
<span style="color:red;">注意:将SRS的path前面拼接个/rtc/v1/play/就可以了</span>即:webrtc://r.ossrs.net/rtc/v1/play/live/livestream
</div>
</div>
<div class="input">
<div>输入URL:</div>
<input
autocomplete="on"
id="playUrl"
placeholder="webrtc://"
value=""
/>
<button id="play">播放</button>
<button id="pause" style="display: none">停止</button>
</div>
<div class="input" style="line-height: 30px">
<button id="destroy">销毁</button>
<span class="fps-inner"></span>
</div>
</div>
</div>
<script src="./demo.js"></script>
<script>
var $player = document.getElementById('play');
var $pause = document.getElementById('pause');
var $playHref = document.getElementById('playUrl');
var $container = document.getElementById('container');
var $destroy = document.getElementById('destroy');
var showOperateBtns = true; // 是否显示按钮
var forceNoOffscreen = true; //
var jessibuca = null;
function create() {
jessibuca = new JessibucaPro({
container: $container,
isResize: false,
text: "",
loadingText: "加载中",
debug: true,
debugLevel: "debug",
showBandwidth: showOperateBtns, // 显示网速
showPerformance: showOperateBtns, // 显示性能
operateBtns: {
fullscreen: showOperateBtns,
screenshot: showOperateBtns,
play: showOperateBtns,
audio: showOperateBtns,
ptz: showOperateBtns,
quality: showOperateBtns,
performance: showOperateBtns,
},
heartTimeoutReplayUseLastFrameShow: true,
audioEngine: "worklet",
isNotMute: false,
heartTimeout: 10,
},);
jessibuca.on('streamQualityChange', (value) => {
console.log('streamQualityChange', value);
})
jessibuca.on('timeUpdate', (value) => {
// console.log('timeUpdate', value);
})
jessibuca.on(JessibucaPro.EVENTS.crashLog, (log) => {
console.log('crashLog', log)
})
$player.style.display = 'inline-block';
$pause.style.display = 'none';
$destroy.style.display = 'none';
}
create();
function play() {
var href = $playHref.value;
if (href) {
jessibuca.play(href);
$player.style.display = 'none';
$pause.style.display = 'inline-block';
$destroy.style.display = 'inline-block';
}
}
function replay() {
if (jessibuca) {
jessibuca.destroy().then(() => {
create();
play();
});
} else {
create();
play();
}
}
$player.addEventListener('click', function () {
play();
}, false)
$pause.addEventListener('click', function () {
$player.style.display = 'inline-block';
$pause.style.display = 'none';
jessibuca.pause();
})
$destroy.addEventListener('click', function () {
if (jessibuca) {
jessibuca.destroy().then(() => {
create();
});
} else {
create();
}
})
</script>
</body>
</html>