Files
handbrake-cluster-webui/HandBrakeCluster/BackgroundTask.class.php

17 lines
268 B
PHP

<?php
class HandBrakeCluster_BackgroundTask {
protected function __construct() {
}
public function run($command) {
$pipes = array();
$pid = proc_open($command . ' &', array(), $pipes);
proc_close($pid);
}
};
?>