Hi @noway
If you want to decode video for 60FPS, the maximum resolution is 1080p, the gstreamer has limited maximum resolution. The performance will decrease as the resolution increases on VPU.
For the opencv, you can try below configuration.
gst = f"rtspsrc location={RTSP_URL} protocols=tcp latency=50 ! " \
f"rtph265depay ! h265parse config-interval=-1 ! " \
f"decodebin ! videoconvert ! video/x-raw,format=BGR ! " \
f"queue max-size-buffers=1 leaky=downstream ! " \
f"appsink drop=true max-buffers=1 sync=false"
cap = cv2.VideoCapture(gst, cv2.CAP_GSTREAMER)
Best Regards,
Zhiming