whoami7 - Manager
:
/
home
/
bleuhbh
/
www
/
root
/
public
/
kaching
/
Upload File:
files >> /home/bleuhbh/www/root/public/kaching/radio.php
<?php $musicDir = "../../../Musique Louis/"; $web_path = "Musique Louis/"; $files = scandir($musicDir); $audioFiles = array_values(array_filter($files, function($file) { return preg_match('/\.(mp3|mp3)$/i', $file); // return preg_match('/\.(mp3|wav|flac)$/i', $file); })); if (empty($audioFiles)) { http_response_code(500); echo "Aucun fichier audio trouvé."; exit; } $tracks = array_slice($audioFiles, 0, 10); // Basic shuffle or loop // shuffle($tracks); // Output M3U playlist header('Content-Type: audio/x-mpegurl'); echo "#EXTM3U\n"; foreach ($tracks as $track) { echo $track . "\n"; // $filename = basename($track); // Get just the file name // echo $web_path . $filename . "\n"; // Output web-accessible } // $tracks = glob($music_dir . '*.mp3'); // shuffle($tracks); // $track = $tracks[0]; // $track = $audioFiles[0]; // header('Content-Type: audio/mpeg'); // readfile($track); // echo "lol" . $track; // echo "lol" . $audioFiles[0]; ?>
Copyright ©2021 || Defacer Indonesia