mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
8 lines
184 B
PHP
8 lines
184 B
PHP
<?php
|
|
$configFile = __DIR__.'/../../videos/configuration.php';
|
|
require_once $configFile;
|
|
header('Content-Type: application/json');
|
|
|
|
$obj = testFFMPEGRemote();
|
|
|
|
die(json_encode($obj));
|