forked from ArdiArtani/Photo-Google-Player-Script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (36 loc) · 936 Bytes
/
index.php
File metadata and controls
40 lines (36 loc) · 936 Bytes
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
<?php
include "gp.php";
$getGP = getPhotoGoogle('https://photos.google.com/share/AF1QipP4SgmZ9Q2FWUKtE4rCwq1bwj-c_yBTPl7K5vZlQfTe5H9IlU4VGiCodMcJ6lDTlA/photo/AF1QipO_SW6Zov_mA-DORS6_eU4C3JdNlRFQTkQ6wlR8?key=Tm51bjVTNGN5c2RLQm1fcmpLWnIwbzRPVTZlTDhn');
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Get link Google Drive</title>
</head>
<body>
<!-- Docs styles -->
<link rel="stylesheet" href="https://cdn.plyr.io/2.0.13/demo.css">
<style>
.container {
max-width: 800px;
margin: 0 auto;
}
</style>
<div class="container">
<br/><br/>
<div id="myElement">Loading...</div>
</div>
<script src="https://content.jwplatform.com/libraries/DbXZPMBQ.js"></script>
<script type="text/javascript">
jwplayer("myElement").setup({
playlist: [{
"sources":<?php echo $getGP?>
}],
allowfullscreen: true,
width: '100%',
aspectratio: '16:9',
});
</script>
</body>
</html>