forked from marketingdelbueno/ensenas-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
player.php
149 lines (68 loc) · 3.35 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
<!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="controls" 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 '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 <a href="http://www.neoessentia.org/" target="_blank">Fundación NeoEssentia</a> Construyendo Nuevas Realidades.</p>
</div>
</div>
</footer>
</body>
</html>