From 888dc4a4e5a0fe3bba42e261d8c051072adda569 Mon Sep 17 00:00:00 2001 From: Mitchell R Date: Sun, 10 May 2026 04:10:33 +0200 Subject: [PATCH] fix: use uridecodebin with video caps filter for codec-agnostic RTSP --- kiosk/prototype.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiosk/prototype.sh b/kiosk/prototype.sh index 43deb15..81c6630 100644 --- a/kiosk/prototype.sh +++ b/kiosk/prototype.sh @@ -171,8 +171,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 \ - ! rtph264depay ! h264parse ! decodebin \ + uridecodebin uri="$rtsp_uri" \ + caps="video/x-raw" \ ! videoconvert ! waylandsink fullscreen=true \ 2>&1 & pids+=($!)