iamscottxu / obs-rtspserver

RTSP server plugin for obs-studio
https://obsproject.com/forum/resources/obs-rtspserver.1037/
GNU General Public License v2.0
440 stars 55 forks source link

使用rtsp通讯时,会有延迟。请问有什么办法让它具有实时响应吗? #187

Open wrench1997 opened 4 weeks ago

wrench1997 commented 4 weeks ago

有个需求是我的业务场景要求高响应。不知道有什么方式能够提高响应速度。 环境是python使用opencv读取rtsp

import cv2

url = "rtsp://**********************"

cap = cv2.VideoCapture(url)
while True:
    ret, frame = cap.read()
    cv2.imshow("frame", frame)
    if cv2.waitKey(1) & 0xFF == ord("q"):
        break
lhcdwz commented 2 days ago

换方案,不用rtsp