mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
13 lines
268 B
PHP
13 lines
268 B
PHP
<?php
|
|
//streamer config
|
|
require_once '../videos/configuration.php';
|
|
|
|
if (!isCommandLineInterface()) {
|
|
return die('Command Line only');
|
|
}
|
|
|
|
|
|
$obj = AVideoPlugin::getDataObject('Live');
|
|
$result = !LiveTransmitionHistory::finishALL();
|
|
|
|
var_dump($result);
|