60 lines
2.1 KiB
PHP
Executable File
60 lines
2.1 KiB
PHP
Executable File
<?php
|
|
$config = parse_ini_file('../config/config.ini',true);
|
|
if(!isset($_COOKIE["session"]) || $_COOKIE["session"] != "true" || !$config["Media"]["youplay"]) {
|
|
http_response_code(403);
|
|
die('Forbidden');
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en" style="height:100%">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="/assets/js/player/youplay.js"></script>
|
|
</head>
|
|
<body style="margin:0;height:100%;overflow:hidden">
|
|
<?php
|
|
include("ytclass.php");
|
|
$ytclass = new YTDownloader();
|
|
$vdata = $ytclass->getDownloadLinks(htmlspecialchars($_GET["id"]));
|
|
if($vdata && is_array($vdata)) {
|
|
$vlink = $vdata["dl"];
|
|
?>
|
|
<video class="video-js vjs-default-skin" controls id="player" poster="image.php?url=<?=urlencode($vdata["info"]["Thumbnail"])?>" title="<?=htmlspecialchars($vdata["info"]["Title"])?>" style="width:100%;height:100%">
|
|
<?php
|
|
for($i=0;$i<count($vdata["info"]["Captions"]);$i++) {
|
|
echo "<track kind='captions' label='".$vdata["info"]["Captions"][$i]["title"]."' src='ytcaption.php?lang=".$vdata["info"]["Captions"][$i]["lang"]."&url=".urlencode($vdata["info"]["Captions"][$i]["url"])."'>";
|
|
}
|
|
?>
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
<script>
|
|
yp_player({share:false,use_desktop_skin:true,sources:[
|
|
<?php
|
|
$formats = array();
|
|
for($i=0;$i<count($vlink);$i++) {
|
|
if(!strstr($vlink[$i]["type"]," Only)")) {
|
|
array_push($formats,$vlink[$i]["type"]);
|
|
echo "{src:'".$vlink[$i]["url"]."',label:'".$vlink[$i]["type"]."',audio:true},";
|
|
}
|
|
else if(strstr($vlink[$i]["type"],"(Video Only)") && !in_array(substr($vlink[$i]["type"],13),$formats)) echo "{src:'".$vlink[$i]["url"]."',label:'".substr($vlink[$i]["type"],13)."',audio:false},";
|
|
}
|
|
?>
|
|
],audio_url:[
|
|
<?php
|
|
for($i=0;$i<count($vlink);$i++) {
|
|
if(strstr($vlink[$i]["type"],"(Audio Only)")) echo "'".$vlink[$i]["url"]."',";
|
|
}
|
|
?>
|
|
],thumbnails:JSON.parse('<?=json_encode($vdata["info"]["Thumbs"])?>')});
|
|
</script>
|
|
<?php
|
|
}
|
|
else if($vdata && !is_array($vdata)) echo "<script>window.location.href='invidious.php?server=".urlencode($vdata)."&id=".urlencode($_GET["id"])."'</script>";
|
|
else {
|
|
?>
|
|
Sorry, there was an error while trying to load your video.
|
|
<?php } ?>
|
|
</body>
|
|
</html>
|