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
|
<?php
require_once "processor.php";
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Extractor de Vídeos de Youtube | <?php echo $videoTitle; ?></title>
<link href="css/normalize.css" rel="stylesheet"/>
<link href="css/salida.min.css" rel="stylesheet"/>
<!--LibreVideoJS-->
<link href="lib/librevideojs/css/teal.css" rel="stylesheet"/>
<!--<link href="lib/librevideojs/css/mix-teal.css" rel="stylesheet"/>-->
<script src="lib/librevideojs/js/cliplibrejs.developer.js" ></script>
</head>
<body>
<div class="contenedor">
<header>
<h2><?php echo $videoTitle; ?></h2>
</header>
<hr>
<section class="libreyt">
<div class="contenedor">
<div class="row">
<div class="imageyt">
<img alt="<?php echo $videoTitle; ?>" src="<?php echo $videoThumbURL; ?>"/>
</div>
<div class="features">
<h6 class="yt-titulo">Canal</h6>
<h6><?php echo $videoAuthor; ?></h6>
<h6 class="yt-titulo">Duración</h6>
<h6><?php echo $videoDuration; ?></h6>
<h6 class="yt-titulo">Vistas</h6>
<h6><?php echo $videoViews; ?></h6>
</div>
</div>
</div>
<hr>
<div class="contenedor">
<h4>Formatos de vídeo</h4>
<?php foreach ($cStreams as $stream): ?>
<?php $stream = json_decode(json_encode($stream)); ?>
<div class="row">
<div class="col"><?php echo $stream->type; ?></div>
<div class="col"><?php echo $stream->quality; ?></div>
<div class="col"><?php echo $stream->size; ?></div>
<div class="col">
<a class="boton-descarga" href="<?php echo $stream->url; ?>" download>Descarga</a>
</div>
</div>
<?php endforeach ?>
<div class="librevideojs">
<video id="example" controls poster="<?php echo $librethumb; ?>" data-setup="{}">
<?php foreach ($videosStream as $stream): ?>
<?php $stream = json_decode(json_encode($stream)) ;?>
<source data-res="<?php echo $stream->quality; ?>" src="<?php echo $stream->url; ?>" type="<?php echo $stream->libretype; ?>"/>
<?php endforeach ?>
<p class="librevjs-no-js">Este navegador no soporta HTML 5.</p>
</video>
</div>
<!--LibreVideoJS-->
<script>
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
// Insert class base
var estilos = document.getElementById("example");
estilos.className += " cliplibre-js-responsive-container librevjs-hd cliplibre-js librevjs-libre-mix-skin";
// funciones
cliplibrejs('#example', {
plugins: {
resolutionSelector: {
force_types: ['video/webm', 'video/ogg'],
default_res: "360p",
}
},
nativeControlsForTouch: false
}).ready(function(){
this.hotkeys({
volumeStep: 0.1,
seekStep: 5,
enableMute: true,
enableFullscreen: true,
enableNumbers: true,
}),
this.progressTips();
});
// @license-end
</script>
<!--LibreVideoJS-->
</div>
</section>
<footer>
<p class="copyleft">Esta web es Software Libre y esta disponible en <a class="enlace" rel="noopener noreferrer" href="https://notabug.org/Heckyel/ytlibre" target="_blank">Notabug</a> bajo la Licencia
<a class="enlace" rel="license noopener noreferrer" href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank">
<abbr title="GNU Affero General Public License version 3">GNU AGPLv3+</abbr>
</a>
</p>
</footer>
</div>
<script src="lib/jquery/dist/jquery.min.js"></script>
</body>
</html>
|