1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/plugin/Live/controlRecording.php
2022-03-17 11:43:59 -03:00

15 lines
339 B
PHP

<?php
require_once dirname(__FILE__) . '/../../videos/configuration.php';
if (!isCommandLineInterface()) {
return die('Command Line only');
}
AVideoPlugin::loadPlugin('Live');
$key = $argv[1];
$live_servers_id = intval(@$argv[2]);
$start = intval(@$argv[3]);
Live::controlRecording($key, $live_servers_id, $start);