diff options
-rw-r--r-- | templates/video.php | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/templates/video.php b/templates/video.php deleted file mode 100644 index 2c0c2fd..0000000 --- a/templates/video.php +++ /dev/null @@ -1,104 +0,0 @@ -<?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 print_r($videoTitle); ?></title> - <link href="css/normalize.css" rel="stylesheet"/> - <link href="css/salida.min.css" rel="stylesheet"/> - <!--LibreVideoJS--> - <link href="libs/librevideojs/css/teal.css" rel="stylesheet"/> - <!--<link href="libs/librevideojs/css/mix-teal.css" rel="stylesheet"/>--> - <script src="libs/librevideojs/js/cliplibrejs.developer.js" ></script> - </head> - <body> - <div class="contenedor"> - <header> - <a class="drm-free" rel="noopener noreferrer" href="https://www.defectivebydesign.org/drm-free" target="_blank"></a> - <h2><?php print_r($videoTitle); ?></h2> - </header> - <hr> - <section class="libreyt"> - <div class="contenedor"> - <div class="row"> - <div class="imageyt"> - <img alt="<?php print_r($videoTitle); ?>" src="<?php print_r($videoThumbURL); ?>"/> - </div> - <div class="features"> - <h6 class="yt-titulo">Canal</h6> - <h6><?php print_r($videoAuthor); ?></h6> - <h6 class="yt-titulo">Duración</h6> - <h6><?php print_r($videoDuration); ?></h6> - <h6 class="yt-titulo">Vistas</h6> - <h6><?php print_r($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 print_r($stream->type); ?></div> - <div class="col"><?php print_r($stream->quality); ?></div> - <div class="col"><?php print_r($stream->size); ?></div> - <div class="col"> - <a class="boton-descarga" href="<?php print_r($stream->url); ?>" download>Descarga</a> - </div> - </div> - <?php endforeach ?> - <div class="librevideojs"> - <video id="example" controls poster="<?php print_r($librethumb); ?>" data-setup="{}"> - <?php foreach ($videosStream as $stream): ?> - <?php $stream = json_decode(json_encode($stream)) ;?> - <source data-res="<?php print_r($stream->quality); ?>" src="<?php print_r($stream->url); ?>" type="<?php print_r($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> - <p><?php print_r($baselink); ?></p> - <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> |