Ruchir Sharma
Published © GPL3+

Video Streaming On Flask Server Using RPi

Live video streaming using RPi and RPi camera module in Flask server.

BeginnerFull instructions provided3 hours31,771
Video Streaming On Flask Server Using RPi

Things used in this project

Story

Read more

Schematics

Camera-RPi connection

Code

main file

Python
#!/usr/bin/env python
from flask import Flask, render_template, Response
import picamera
import cv2
import socket
import io

app = Flask(__name__)
vc = cv2.VideoCapture(0)

@app.route('/')
def index():
    """Video streaming"""
    return render_template('index.html')

def gen():
    """Video streaming generator function."""
    while True:
        rval, frame = vc.read()
        cv2.imwrite('t.jpg', frame)
        yield (b'--frame\r\n'
               b'Content-Type: image/jpeg\r\n\r\n' + open('t.jpg', 'rb').read() + b'\r\n')


@app.route('/video_feed')
def video_feed():
    """Video streaming route. Put this in the src attribute of an img tag."""
    return Response(gen(),
                    mimetype='multipart/x-mixed-replace; boundary=frame')


if __name__ == '__main__':
        app.run(host='0.0.0.0', debug=True, threaded=True)
               

index.html

HTML
<html>
  <head>
    <title>Video Streaming </title>
  </head>
  <body>
    <h1>Live Video Streaming </h1>
    <img src="{{ url_for('video_feed') }}">
  </body>
</html>

Credits

Ruchir Sharma

Ruchir Sharma

12 projects • 180 followers

Comments