mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
12 lines
245 B
PHP
12 lines
245 B
PHP
<?php
|
|
$configFile = __DIR__.'/../../videos/configuration.php';
|
|
require_once $configFile;
|
|
header('Content-Type: application/json');
|
|
|
|
if(!User::isAdmin()){
|
|
forbiddenPage('Must be admin');
|
|
}
|
|
|
|
$obj = listFFMPEGRemote();
|
|
|
|
die(json_encode($obj));
|