pip install -r requirements.txt
python app.py
- Put Zero (O) in cv2.VideoCapture(0)
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:123456@101.134.16.117:554/user=mamun_password=123456_channel=0_stream=0.sdp')
cv2.VideoCapture('rtsp://mamun:123456@101.134.16.117:554/user=mamun_password=123456_channel=1_stream=0.sdp')
cv2.imencode('.jpg', frame)[1].tobytes()
Instead of return use this in camera.py
cv2.imshow('frame', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
Learn More about Streaming with flask