FlaskCameraLiveStream/main.py

39 lines
925 B
Python
Raw Normal View History

2020-09-21 20:44:29 +00:00
#Modified by smartbuilds.io
#Date: 27.09.20
#Desc: This web application serves a motion JPEG stream
2020-09-21 20:44:29 +00:00
# main.py
# import the necessary packages
from flask import Flask, render_template, Response, request
2020-09-21 20:44:29 +00:00
from camera import VideoCamera
import time
import threading
import os
pi_camera = VideoCamera(flip=False) # flip pi camera if upside down.
# App Globals (do not edit)
2020-09-21 20:44:29 +00:00
app = Flask(__name__)
2020-09-21 20:44:29 +00:00
@app.route('/')
def index():
return render_template('index.html') #you can customze index.html here
2020-09-21 20:44:29 +00:00
def gen(camera):
#get camera frame
2020-09-21 20:44:29 +00:00
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')
2020-09-21 20:44:29 +00:00
@app.route('/video_feed')
def video_feed():
return Response(gen(pi_camera),
2020-09-21 20:44:29 +00:00
mimetype='multipart/x-mixed-replace; boundary=frame')
2020-09-21 20:44:29 +00:00
if __name__ == '__main__':
app.run(host='0.0.0.0', debug=False)