-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (50 loc) · 1.23 KB
/
index.html
File metadata and controls
58 lines (50 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>MP4解封装</title>
<style>
body {
margin: 0;
padding: 0;
}
.controls {
display: block;
width: 100%;
text-align: left;
margin-left: auto;
margin-right: auto;
margin-top: 8px;
margin-bottom: 10px;
}
</style>
<style>
.container {
width: 100%;
width: 100%;
position: relative;
}
#video {
background: #000;
width: 300px;
}
#input {
width: 300px;
}
</style>
</head>
<body>
<div class="container">
<canvas id="video" width="0" height="0"></canvas>
</div>
<div class="controls">
<h2>视频</h2>
<input id="input" value="http://192.168.244.209:1048/265.mp4" />
<button onclick="load()">Load</button>
<button onclick="play()">Play</button>
<button onclick="pause()">Pause</button>
</div>
<script type="text/javascript" src="H265.js"></script></body>
</html>