A Flask Web-App to stream live from local webcam or CCTV (rtsp link)
cv2.VideoCapture(0)
cv2.VideoCapture('rtsp://username:password@camera_ip_address:554/user=username_password='password'_channel=channel_number_stream=0.sdp')
cv2.VideoCapture('rtsp://mamun:[email protected]:554/user=mamun_password=123456_channel=0_stream=0.sdp')
cv2.VideoCapture('rtsp://mamun:[email protected]:554/user=mamun_password=123456_channel=1_stream=0.sdp')
cv2.imencode('.jpg', frame)[1].tobytes()
net , buffer = cv2.imencode('.jpg', frame)
buffer.tobytes()