-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
162 lines (142 loc) · 8.51 KB
/
index.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VideoPlyr</title>
<meta name="description" content="VideoPlyr - Video Player with Many Powerful HTML5 Players Hidden ID and Many Features 🚀">
<!-- Meta Tags for SEO -->
<!-- <meta name="description" content="VideoPlyr - Video Player with Many Powerful HTML5 Players Hidden ID and Many Features 🚀">
<meta name="keywords" content="VideoPlyr, Google Drive, Proxy, Video Player, HTML5 Player, Hidden ID, Features"> -->
<meta name="author" content="SH20RAJ">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://sh20raj.github.io/VideoPlyr/">
<meta property="og:title" content="VideoPlyr - Video Player with Many Powerful HTML5 Players Hidden ID and Many Features 🚀">
<meta property="og:description" content="VideoPlyr - Video Player with Many Powerful HTML5 Players Hidden ID and Many Features 🚀">
<meta property="og:image" content="https://sh20raj.github.io/VideoPlyr/drive-logo.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://sh20raj.github.io/VideoPlyr/">
<meta property="twitter:title" content="VideoPlyr - Video Player with Many Powerful HTML5 Players Hidden ID and Many Features 🚀">
<meta property="twitter:description" content="VideoPlyr - Video Player with Many Powerful HTML5 Players Hidden ID and Many Features 🚀">
<meta property="twitter:image" content="https://sh20raj.github.io/VideoPlyr/drive-logo.png">
<!-- Other Meta Tags -->
<link rel="icon" href="https://raw.githubusercontent.com/SH20RAJ/VideoPlyr/main/drive-logo.png">
<meta name="theme-color" content="#ffffff">
<meta name="robots" content="index, follow">
<!-- Link to Tailwind CSS via CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<link rel="icon" href="https://raw.githubusercontent.com/SH20RAJ/VideoPlyr/main/drive-logo.png">
<meta name="description" content="Google Drive Proxy Video Player with Many Powerful HTML5 Players Hidden ID and Many Features 🚀">
<style>
/* Glass effect */
.glass {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(10px);
}
</style>
</head>
<body class="bg-gray-100">
<!-- Subscribe Box -->
<div class="container mx-auto py-8">
<div class="max-w-md mx-auto bg-white p-6 rounded-md shadow-md glass">
<div class="text-center">
<img src="https://cdn.jsdelivr.net/gh/SH20RAJ/VideoPlyr@main/drive-logo.png" alt="VideoPlyr Logo" class="mx-auto h-16 mb-4">
<h2 class="text-xl font-semibold text-gray-800">VideoPlyr</h2>
<small>- <a href="https://sh20raj.github.io/DrivePlyr/" target="_">DrivePlyr</a></small>
</div>
<div class="mt-6">
<input type="text" placeholder="Enter Your Video Link*" autocomplete="on" id="videourl" required="required" class="block w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:border-blue-400 mb-3">
<input type="text" placeholder="Poster URL (optional)" autocomplete="on" id="posterurl" class="block w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:border-blue-400 mb-3">
<input type="text" placeholder="Video Title (optional)" autocomplete="on" id="videotitle" class="block w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:border-blue-400 mb-3">
<button onclick="get()" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded w-full transition duration-300">GET</button>
</div>
</div>
</div>
<!-- Cards Section -->
<div class="container mx-auto px-4 ">
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">
<!-- Card 1: SopPlayer -->
<div class="bg-white rounded-md shadow-md glass">
<h4 class="text-lg font-semibold text-gray-800 p-4">SopPlayer</h4>
<div class="aspect-w-16 aspect-h-9">
<iframe id="sopplayer" src="sopplayer.html" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="w-full"></iframe>
</div>
<div class="p-4 flex justify-between items-center">
<a href="#" onclick="embedsp()" class="text-blue-500 hover:text-blue-700">Embed Code</a>
<a href="#" onclick="opensp()" class="text-blue-500 hover:text-blue-700">Open</a>
</div>
</div>
<!-- Card 2: Plyr -->
<div class="bg-white rounded-md shadow-md glass">
<h4 class="text-lg font-semibold text-gray-800 p-4">Plyr</h4>
<div class="aspect-w-16 aspect-h-9">
<iframe id="plyr" src="plyr.html" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="w-full"></iframe>
</div>
<div class="p-4 flex justify-between items-center">
<a href="#" onclick="embedplyr()" class="text-blue-500 hover:text-blue-700">Embed Code</a>
<a href="#" onclick="openplyr()" class="text-blue-500 hover:text-blue-700">Open</a>
</div>
</div>
<!-- Card 3: vLiteJS -->
<div class="bg-white rounded-md shadow-md glass">
<h4 class="text-lg font-semibold text-gray-800 p-4">vLiteJS</h4>
<div class="aspect-w-16 aspect-h-9">
<iframe id="vlitejs" src="vlitejs.html" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="w-full"></iframe>
</div>
<div class="p-4 flex justify-between items-center">
<a href="#" onclick="embedvlitejs()" class="text-blue-500 hover:text-blue-700">Embed Code</a>
<a href="#" onclick="openvlitejs()" class="text-blue-500 hover:text-blue-700">Open</a>
</div>
</div>
<!-- Card 4: Fluid Player -->
<div class="bg-white rounded-md shadow-md glass">
<h4 class="text-lg font-semibold text-gray-800 p-4">Fluid Player</h4>
<div class="aspect-w-16 aspect-h-9">
<iframe id="fluid" src="fluid.html" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="w-full"></iframe>
</div>
<div class="p-4 flex justify-between items-center">
<a href="#" onclick="embedfluid()" class="text-blue-500 hover:text-blue-700">Embed Code</a>
<a href="#" onclick="openfluid()" class="text-blue-500 hover:text-blue-700">Open</a>
</div>
</div>
<!-- Card 5: Afterglow -->
<div class="bg-white rounded-md shadow-md glass">
<h4 class="text-lg font-semibold text-gray-800 p-4">Afterglow</h4>
<div class="aspect-w-16 aspect-h-9">
<iframe id="afterglow" src="afterglow.html" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="w-full"></iframe>
</div>
<div class="p-4 flex justify-between items-center">
<a href="#" onclick="embedafterglow()" class="
text-blue-500 hover:text-blue-700">Embed Code</a>
<a href="#" onclick="openafterglow()" class="text-blue-500 hover:text-blue-700">Open</a>
</div>
</div>
<!-- Card 6: Mediaelements -->
<div class="bg-white rounded-md shadow-md glass">
<h4 class="text-lg font-semibold text-gray-800 p-4">Mediaelements</h4>
<div class="aspect-w-16 aspect-h-9">
<iframe id="mediaelements" src="mediaelements.html" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="w-full"></iframe>
</div>
<div class="p-4 flex justify-between items-center">
<a href="#" onclick="embedmediaelements()" class="text-blue-500 btn hover:text-blue-700">Embed Code</a>
<a href="#" onclick="openmediaelements()" class="text-blue-500 hover:text-blue-700">Open</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="mt-5 py-8 bg-gray-900 text-white text-center">
<h3><a href="https://linktr.ee/cxdiin">CXDI - Serve Technology</a></h3>
<h5>Currently working on <a target="_blank" href="https://VideoPlyr.appspages.online/" rel="dofollow">VideoPlyr 2.0</a></h5>
</footer>
<!-- Scripts -->
<script src="script.js"></script>
<!-- AddThis widget script -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-6335ced4a8ebd2f2"></script>
<!-- Tracking pixel (hidden) -->
<img style="display: none;" src="https://iplogger.com/VideoPlyr">
</body>
</html>