-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·38 lines (37 loc) · 1.53 KB
/
index.html
File metadata and controls
executable file
·38 lines (37 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<title>MediaViewer</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
}
</style>
<link rel="stylesheet" href="css/mediaviewer.css">
<link rel="stylesheet" href="css/mediaviewer-mobile.css">
</head>
<body>
<div media-video-player controls>
<playlists>
<videoplayer title="Big Buck Bunny" data-author="Blender Foundation">
<video src="videos/demo.mp4" data-quality="auto"></video>
<video src="videos/demo_1080p.mp4" data-quality="1080"></video>
<video src="videos/demo_144p.mp4" data-quality="144"></video>
<track src="tracks/en-US.vtt" kind="subtitles" srclang="en" label="English"></track>
<track src="tracks/de-DE.vtt" kind="subtitles" srclang="de" label="German"></track>
<track src="tracks/chapters.vtt" kind="chapters" srclang="en" label="English"></track>
</videoplayer>
<videoplayer title="Electric Callboy - Everytime We Touch (TEKKNO Version) OFFICIAL VIDEO" data-author="Electric Callboy">
<video src="videos/video2.mp4"></video>
</videoplayer>
</playlists>
</div>
<script src="autoloader.js" type="module"></script>
</body>
</html>