Skip to content

Instantly share code, notes, and snippets.

@avirup171
Created October 5, 2019 07:10
Show Gist options
  • Save avirup171/8b66678f066dc266d7f1dd83dda9f442 to your computer and use it in GitHub Desktop.
Save avirup171/8b66678f066dc266d7f1dd83dda9f442 to your computer and use it in GitHub Desktop.
@app.route('/')
def index():
return render_template('index.html')
def gen(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')
@app.route('/video_feed')
def video_feed():
return Response(gen(VideoCamera()),
mimetype='multipart/x-mixed-replace; boundary=frame')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment