From 4c3f206df9c6f493c04845656ff878db1ecd22a4 Mon Sep 17 00:00:00 2001 From: devdatt Date: Tue, 9 Dec 2025 08:04:32 +0530 Subject: [PATCH] error_log --- encoder/static.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/encoder/static.php b/encoder/static.php index 95498ea..f1ecd2d 100755 --- a/encoder/static.php +++ b/encoder/static.php @@ -110,6 +110,7 @@ function update_service($which_service) case "copy_input": switch ($input_source) { case "hdmi": + error_log("hdmi copy", $hdmi_delay_video); $input .= "ffmpeg -hwaccel auto -hide_banner -f v4l2 -thread_queue_size 512 -input_format mjpeg " . " -video_size " . $data['hdmi']['resolution'] . " -framerate " . $data['hdmi']['framerate'] @@ -140,6 +141,7 @@ function update_service($which_service) case "use_common_backend": switch ($input_source) { case "hdmi": + error_log("hdmi common_backend", $hdmi_delay_video); $input .= "ffmpeg -hwaccel auto -hide_banner -f v4l2 -thread_queue_size 512 -input_format mjpeg -video_size " . $data['hdmi']['resolution'] . " -framerate " . $data['hdmi']['framerate'] . " -i /dev/video0 -f alsa -i " . $data['hdmi']['audio_source'] . " -c:v h264_qsv ";