编程语言
首页 > 编程语言> > python使用RTSP取流(有延迟,测试用)

python使用RTSP取流(有延迟,测试用)

作者:互联网

这种方式具有几秒延迟,无法正常使用,仅仅能够做测试使用。
import cv2
url = "rtsp://用户名:密码@192.168.0.102/Streaming/Channels/2" //在萤石云web里面查看
cap = cv2.VideoCapture(url)
ret, frame = cap.read()
while ret:
    ret, frame = cap.read()
    cv2.imshow("frame",frame)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break
cv2.destroyAllWindows()
cap.release()

#番外
VLC
媒体–>打开网络串流–>网络
在这里插入图片描述
在网络URL里面输入:
“rtsp://用户名:密码@192.168.0.102/Streaming/Channels/2” //在萤石云web里面查看

标签:取流,cap,0.102,python,frame,RTSP,cv2,ret,192.168
来源: https://blog.csdn.net/qq_45616304/article/details/121792871