-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvr_flv_live_video.html
60 lines (47 loc) · 1.46 KB
/
vr_flv_live_video.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>flv直播流例子</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<style>
#example {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
</style>
</head>
<body>
<div id="example"></div>
<script src="../build/three.js"></script>
<script src="https://cdn.bootcss.com/flv.js/1.5.0/flv.min.js"></script>
<script src="../build/mxreality.js"></script>
<script>
window.onload = function () {
init();
}
//var vr=new VR(scene,renderer,container);
function init() {
var vr = new VR({ 'id': 'example', 'camera_para': { "fov": 50 } });
//vr.playText="<img src='img/play90.png' width='40' height='40'/>";
vr.vrbox.radius = 600;
if (AVR.isCrossScreen()) {
// 调整vr视窗偏移量
vr.effect.separation = 1.2;
}
vr.loadProgressManager.onLoad = function () {
vr.video.setAttribute("loop", "loop");
vr.video.crossOrigin = "Anonymous";
}
//AVR.useGyroscope=false;
vr.init(function () {
});
vr.play('http://localhost:8000/live/test.flv', vr.resType.flvVideo);
vr.video.onended = function () {
}
}
</script>
</body>
</html>