diff --git a/src/Server/Context.php b/src/Server/Context.php index 4ee6d2d..25f537a 100644 --- a/src/Server/Context.php +++ b/src/Server/Context.php @@ -74,7 +74,7 @@ public function getStreamForChannelServiceId(int $channelServiceId): ReadableStr throw new DvbException("Can't start a new process: maximum number of running process reached ({$this->maxProcessAllowed})"); } - $processLine = "exec dvbv5-zap -c {$channelsFile} -v --lna=-1 '{$channelDescriptor[0]}' -P -o -"; + $processLine = "exec dvbv5-zap -c {$channelsFile} -v --lna=-1 '{$channelDescriptor[0]}' -o -"; $this->logger->debug($processLine); $this->processesByChannelId[$channelServiceId] = new Process($processLine);