-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.py
46 lines (33 loc) · 1.47 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from flask import Flask, render_template, Response
import cv2
app = Flask(__name__)
# def find_camera(id):
# cameras = ['rtsp://username:password@ip_address:554/user=username_password='password'_channel=channel_number_stream=0.sdp',
# 'rtsp://username:password@ip_address:554/user=username_password='password'_channel=channel_number_stream=0.sdp']
# return cameras[int(id)]
# for cctv camera use rtsp://username:password@ip_address:554/user=username_password='password'_channel=channel_number_stream=0.sdp' instead of camera
# for webcam use zero(0)
def gen_frames(camera_id):
# cam = find_camera(camera_id)
cap= cv2.VideoCapture(0)
while True:
# for cap in caps:
# # Capture frame-by-frame
success, frame = cap.read() # read the camera frame
if not success:
break
else:
ret, buffer = cv2.imencode('.jpg', frame)
frame = buffer.tobytes()
yield (b'--frame\r\n'
b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n') # concat frame one by one and show result
@app.route('/video_feed/<string:id>/', methods=["GET"])
def video_feed(id):
"""Video streaming route. Put this in the src attribute of an img tag."""
return Response(gen_frames(id),
mimetype='multipart/x-mixed-replace; boundary=frame')
@app.route('/', methods=["GET"])
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run()