From 25886115014b9d44cf912857d08d4a9adedde525 Mon Sep 17 00:00:00 2001 From: Mitchell R Date: Sun, 10 May 2026 04:09:01 +0200 Subject: [PATCH] fix: depay h264 before decodebin to avoid audio pad linking failure --- kiosk/prototype.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kiosk/prototype.sh b/kiosk/prototype.sh index 3d242d3..43deb15 100644 --- a/kiosk/prototype.sh +++ b/kiosk/prototype.sh @@ -172,9 +172,8 @@ launch_cameras() { # Try hardware decode first (Pi5 V4L2), fall back to software gst-launch-1.0 \ rtspsrc location="$rtsp_uri" latency=300 protocols=tcp \ - ! decodebin \ - ! videoconvert \ - ! waylandsink fullscreen=true \ + ! rtph264depay ! h264parse ! decodebin \ + ! videoconvert ! waylandsink fullscreen=true \ 2>&1 & pids+=($!) done