-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
34 lines (28 loc) · 959 Bytes
/
main.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
# This script opens a video stream on a Private IP address of the Pi Camera
from flask import Flask, render_template, Response, request
from camera import VideoCamera
import time
import os
# Create the Flask App
app = Flask(__name__)
# Move the frames on the screen
@app.route('/', methods=['GET', 'POST'])
def move():
result = ""
if request.method == 'POST':
return render_template('index.html', res_str=result)
return render_template('index.html')
# Run the camera
def run_camera(camera):
while True:
frame = camera.get_frame()
yield (b'--frame\r\n'
b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n\r\n')
# Open the video feed
@app.route('/video_feed')
def video_feed():
return Response(run_camera(VideoCamera()),
mimetype='multipart/x-mixed-replace; boundary=frame')
# Run the web app
if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True, threaded=True)