-
Notifications
You must be signed in to change notification settings - Fork 2
/
player.php
149 lines (71 loc) · 3.44 KB
/
player.php
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Reproductor | Enseñas</title>
<link rel="stylesheet" type="text/css" href="assets/css/commons.css" media="all">
<link rel="stylesheet" type="text/css" href="assets/css/mobile.css" media="only screen and (max-width: 599px) and (min-width: 120px)">
<link rel="stylesheet" type="text/css" href="assets/css/tablet.css" media="only screen and (max-width: 999px) and (min-width: 600px)">
<link rel="stylesheet" type="text/css" href="assets/css/desktop.css" media="only screen and (min-width: 1000px)">
<script src="assets/js/modernizr.js" type="text/javascript"></script>
<!--[if (lt IE 9) & (!IEMobile)]>
<link rel="stylesheet" href="assets/css/ie.css">
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="logo">
<h1>
<a href="/" accesskey="1">Enseñas</a>
</h1>
</div>
</div>
</header><!-- /header -->
<div class="content">
<div class="container">
<section class="categorias col-7">
<div class="back-home">
<a class="btn btn-success" href="catalogo.php" title="Regresar">
<i class="icon-regresar"></i>
<span>Regresar a la Categoría: </span>
</a>
</div>
<?php $videos = explode(';', rtrim(ltrim(base64_decode($_GET['video'])))); ?>
<video id="video" class="video" controls autoplay preload="auto" autobuffer poster="assets/img/default-video.png">
<?php
foreach ($videos as $video):
$nombre = explode('.', $video);
$extension = rtrim(ltrim($nombre[3]));
switch ($extension) {
case 'mp4':
$type = 'type="video/mp4"';
break;
case 'webm':
$type = 'type="video/webm"';
break;
case 'ogv':
$type = 'type="video/ogg"';
break;
default:
$type = null;
}
?>
<source src="<?php echo $video;?>" <?php echo $type;?> />
<?php
endforeach;
?>
</video>
</section>
</div>
</div>
<footer class="foot">
<div class="container">
<div class="txtc">
<p>2011 - 2019 <a href="http://www.marketingdelbueno.com/" target="_blank">Marketing del Bueno</a>.</p>
</div>
</div>
</footer>
</body>
</html>