-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmp4view.html
46 lines (46 loc) · 1.04 KB
/
mp4view.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
<html>
<head>
<title> MP4 Container Viewer </title>
<style>
table {
float:left;
margin: 4px;
border-style: solid; border-color: black;
background-color:#EEE;
border-radius:8px;
}
.length {
background-color:#BCC;
}
.type {
background-color:#FEC;
}
.data {
background-color:#EFF;
}
body {
background-color:#BBB;
}
</style>
<script type="text/javascript" src="lib/drop.js"> </script>
<script type="text/javascript" src="lib/byte.js"> </script>
<script type="text/javascript" src="mp4view.js"> </script>
</head>
<body>
Drop MP4 file Here!
<div id="container">
<table id="template">
<tbody>
<tr>
<td class="length" colspan=3></td>
</tr>
<tr>
<td class="type"></td>
<td class="data"></td>
<td class="box"></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>