mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 02:09:22 +02:00
11 lines
231 B
PHP
11 lines
231 B
PHP
<?php
|
|
require_once dirname(__FILE__) . '/../../../videos/configuration.php';
|
|
|
|
if(!isCommandLineInterface()){
|
|
forbiddenPage('Must be a command line');
|
|
}
|
|
|
|
$objP = AVideoPlugin::getDataObject('WebRTC');
|
|
WebRTC::startServer();
|
|
|
|
?>
|