-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMach1Decode-360VideoPlayer.html
43 lines (34 loc) · 1.09 KB
/
Mach1Decode-360VideoPlayer.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Mach1</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/video-js.min.css" rel="stylesheet">
<link href="css/videojs-panorama.min.css" rel="stylesheet">
<script src="js/Mach1Decode.js"></script>
<script src="js/video.min.js"></script>
<script src="js/three.min.js"></script>
<script src="js/videojs-panorama.v5.min.js"></script>
<script src="js/Mach1SoundPlayer.js"></script>
<script src="js/Mach1VideoPlayer.js"></script>
<script src="js/M1DecodeExample.js"></script>
<style>
#videojs-panorama-player{
position: absolute;
width: 800px;
height: 600px;
top: 0;
left: 0;
}
</style>
</head>
<body>
<section class="main-content">
<video id="videojs-panorama-player" class="video-js vjs-default-skin" crossorigin="anonymous" controls>
<source src="video/video.webm" type='video/webm'>
</video>
</section>
<div id="status"></div>
</body>
</html>