问题:写了一个Py脚本接收RTSP视频流并显示,但是RTSP视频流断掉重新恢复时,Py脚本却卡住了,无法继续显示视频。
解决:当RTSP断掉时,释放cap, 如果cap.read()这一步读取时间超过5秒,也将他释放。
import cv2
import time# RTSP视频流地址
rtsp_url = "rtsp://192.168.1.6:8554/video"cv_window = 0while True:# 创建VideoCapture对象,指定RTSP流地址cap = cv2.VideoCapture(rtsp_url)# 设置超时时间(例如,5秒)timeout_seconds = 5start_time = time.time()# 仅尝试连接一次,判断是否成功ret, frame = cap.read()if time.time() - start_time >= timeout_seconds or not ret:print("Failed to connect to RTSP stream after {} seconds. Retrying in 10 seconds...".format(timeout_seconds))cap.release()# 关闭所有OpenCV窗口if cv_window > 0:cv2.destroyAllWindows()cv_window = 0 # 关闭所有窗口后,置为0time.sleep(10) # 等待10秒后重试continue# 成功连接并读取到帧,则显示图像while True:ret, frame = cap.read()if not ret:print("Lost connection to RTSP stream. Reconnecting...")breakresized_frame = cv2.resize(frame, (640, 480))cv2.imshow("RTSP Video Stream", resized_frame)cv_window += 1 # 打开窗口则+1# 按'q'键退出循环if cv2.waitKey(1) & 0xFF == ord('q'):break# 释放当前循环中的VideoCapture资源cap.release()# 最终关闭所有OpenCV窗口
cv2.destroyAllWindows()