while True: num += 1 snum = str(num) #현재시간 가져오기 currentTime = datetime.datetime.now() if bDate == "": bDate = str(currentTime.strftime('%Y%m%d')) #RTSP를 불러오는 곳 video_capture = cv2.VideoCapture(1) # 웹캠 설정 #video_capture.set(3, 800) # 영상 가로길이 설정 #video_capture.set(4, 600) # 영상 세로길이 설정 fps = 20 # 가로 길이 가져오기 streaming_window_width = int(video_capture.get(3)) # 세로 길이 가져오기 streaming_window_height = in..