error_log

This commit is contained in:
devdatt 2026-01-05 06:42:06 +05:30
parent b89179d004
commit f357366f01
3 changed files with 5 additions and 8 deletions

View File

@ -2,7 +2,7 @@
include 'header.php'; include 'header.php';
exec("sudo chmod 444 /sys/class/dmi/id/product_uuid"); exec("sudo chmod 444 /sys/class/dmi/id/product_uuid");
$version = 3; $version = 4;
function fail(string $msg): never function fail(string $msg): never
{ {

View File

@ -641,11 +641,7 @@ function update_service($which_service)
$service_display = $data['service_display']; $service_display = $data['service_display'];
$service_rtmp0_multiple = $data['service_rtmp0_multiple']; $service_rtmp0_multiple = $data['service_rtmp0_multiple'];
$service_rtmp0_hls = $data['service_rtmp0_hls'];
$service_rtmp0_dash = $data['service_rtmp0_dash'];
$service_rtmp1_multiple = $data['service_rtmp1_multiple']; $service_rtmp1_multiple = $data['service_rtmp1_multiple'];
$service_rtmp1_hls = $data['service_rtmp1_hls'];
$service_rtmp1_dash = $data['service_rtmp1_dash'];
$service_udp0 = $data['service_udp0']; $service_udp0 = $data['service_udp0'];
$service_udp1 = $data['service_udp1']; $service_udp1 = $data['service_udp1'];
$service_udp2 = $data['service_udp2']; $service_udp2 = $data['service_udp2'];
@ -895,6 +891,7 @@ function update_service($which_service)
case "udp1"; case "udp1";
if ($service_udp1 === "enable") { if ($service_udp1 === "enable") {
$udp1 = 'ffmpeg -hwaccel auto -hide_banner -i '; $udp1 = 'ffmpeg -hwaccel auto -hide_banner -i ';
error_log($use_common_backend);
switch ($use_common_backend) { switch ($use_common_backend) {
case "copy_input": case "copy_input":
case "use_common_backend": case "use_common_backend":

View File

@ -24,9 +24,9 @@ if (file_exists($jsonFile)) {
$service_rtmp0_multiple = $data['service_rtmp0_multiple']; $service_rtmp0_multiple = $data['service_rtmp0_multiple'];
$service_rtmp0_hls = $data['service_rtmp0_hls']; $service_rtmp0_hls = $data['service_rtmp0_hls'];
$service_rtmp0_dash = $data['service_rtmp0_dash']; $service_rtmp0_dash = $data['service_rtmp0_dash'];
$service_rtmp1_multiple = $data['service_rtmp0_multiple']; $service_rtmp1_multiple = $data['service_rtmp1_multiple'];
$service_rtmp1_hls = $data['service_rtmp0_hls']; $service_rtmp1_hls = $data['service_rtmp1_hls'];
$service_rtmp1_dash = $data['service_rtmp0_dash']; $service_rtmp1_dash = $data['service_rtmp1_dash'];
$service_srt_multiple = $data['service_srt_multiple']; $service_srt_multiple = $data['service_srt_multiple'];
$text = "<h3>Encoder</h3>"; $text = "<h3>Encoder</h3>";