I don't believe that will ever have worked on Bookworm, whether 6.1 or 6.6 kernel.
It's a GStreamer change that tries to read the H264 level from the caps. You haven't specified it, therefore it ends up going for level 1.0 with a max res of 176×144 at 15fps.
Change the back end of your pipe toLevel 3.2 would probably be sufficient. Level 4 is 1080p30.
See https://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Levels for the definition of H264 levels.
It's a GStreamer change that tries to read the H264 level from the caps. You haven't specified it, therefore it ends up going for level 1.0 with a max res of 176×144 at 15fps.
Change the back end of your pipe to
Code:
v4l2h264enc ! 'video/x-h264,level=(string)4' ! rtspclientsink location=rtsp://localhost:8554/test
See https://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Levels for the definition of H264 levels.
Statistics: Posted by 6by9 — Tue Mar 19, 2024 12:28 pm