mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
18 lines
340 B
PHP
18 lines
340 B
PHP
<?php
|
|
$configFile = __DIR__.'/../../videos/configuration.php';
|
|
require_once $configFile;
|
|
header('Content-Type: application/json');
|
|
|
|
if(!User::isAdmin()){
|
|
forbiddenPage('Must be admin');
|
|
}
|
|
|
|
$pid = intval($_REQUEST['pid']);
|
|
|
|
if(empty($pid)){
|
|
forbiddenPage('PID is invalid');
|
|
}
|
|
|
|
$obj = killFFMPEGRemote($pid);
|
|
|
|
die(json_encode($obj));
|